• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
      • B*
      • Defunc
      • Fty
      • Apt
      • Std/util
      • Defdata
      • Defrstobj
      • Seq
      • Match-tree
      • Defrstobj
      • With-supporters
      • Def-partial-measure
      • Template-subst
      • Soft
      • Defthm-domain
      • Event-macros
        • Evmac-input-hints-p
        • Evmac-input-print-p
        • Function-definedness
        • Event-macro-input-processing
        • Event-macro-screen-printing
        • Make-event-terse
        • Event-macro-applicability-conditions
          • Evmac-input-hints-p
          • Event-macro-applicability-condition-utilities
            • Evmac-appcond-theorem
            • Evmac-appcond-theorem-list
            • Evmac-appcondp
            • Evmac-ensure-no-extra-hints
            • Make-evmac-appcond?
            • Evmac-appcond-theorems-no-extra-hints
            • Evmac-appcond-listp
              • Evmac-appcond-listp-basics
        • Event-macro-results
        • Template-generators
        • Event-macro-event-generators
        • Event-macro-proof-preparation
        • Try-event
        • Restore-output?
        • Restore-output
        • Fail-event
        • Cw-event
        • Event-macro-xdoc-constructors
        • Event-macro-intro-macros
      • Def-universal-equiv
      • Def-saved-obligs
      • With-supporters-after
      • Definec
      • Sig
      • Outer-local
      • Data-structures
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
    • Math
    • Testing-utilities
  • Event-macro-applicability-condition-utilities

Evmac-appcond-listp

Recognize true lists of applicabilty conditions.

Signature
(evmac-appcond-listp x) → std::bool

This is an ordinary std::deflist. It is "strict" in that it requires x to be a "properly" nil-terminated list.

Definitions and Theorems

Function: evmac-appcond-listp

(defun evmac-appcond-listp (x)
  (declare (xargs :guard t))
  (let ((__function__ 'evmac-appcond-listp))
    (declare (ignorable __function__))
    (if (consp x)
        (and (evmac-appcondp (car x))
             (evmac-appcond-listp (cdr x)))
      (null x))))

Subtopics

Evmac-appcond-listp-basics
Basic theorems about evmac-appcond-listp, generated by std::deflist.