• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • C
        • Soft
        • Bv
        • Imp-language
        • Ethereum
        • Event-macros
          • Evmac-input-hints-p
          • Evmac-input-print-p
          • Event-macro-input-processing
          • Function-definedness
          • 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
        • Java
        • Riscv
        • Bitcoin
        • Zcash
        • Yul
        • ACL2-programming-language
        • Prime-fields
        • Json
        • Syntheto
        • File-io-light
        • Cryptography
        • Number-theory
        • Axe
        • Lists-light
        • Builtins
        • Solidity
        • Helpers
        • Htclient
        • Typed-lists-light
        • Arithmetic-light
      • X86isa
      • Axe
      • Execloader
    • 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.