• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
          • Simplify-defun
          • Isodata
          • Tailrec
          • Schemalg
          • Restrict
          • Expdata
          • Casesplit
          • Simplify-term
          • Simplify-defun-sk
          • Parteval
          • Solve
          • Wrap-output
          • Propagate-iso
          • Simplify
          • Finite-difference
          • Drop-irrelevant-params
          • Copy-function
          • Lift-iso
          • Rename-params
          • Utilities
            • Defaults-table
            • Xdoc::apt-constructors
            • Input-processors
            • Transformation-table
            • Find-base-cases
            • Untranslate-specifier-utilities
              • Ensure-is-untranslate-specifier
              • Untranslate-specifier-p
                • *untranslate-specifier-keywords*
              • Print-specifier-utilities
              • Hints-specifier-utilities
            • Simplify-term-programmatic
            • Simplify-defun-sk-programmatic
            • Simplify-defun-programmatic
            • Simplify-defun+
            • Common-options
            • Common-concepts
          • Error-checking
          • Fty-extensions
          • Isar
          • Kestrel-utilities
          • Set
          • Soft
          • C
          • Bv
          • Imp-language
          • Event-macros
          • Java
          • Bitcoin
          • Ethereum
          • Yul
          • Zcash
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Untranslate-specifier-utilities

    Untranslate-specifier-p

    Recognize untranslate specifiers.

    Signature
    (untranslate-specifier-p x) → yes/no
    Returns
    yes/no — Type (booleanp yes/no).

    Definitions and Theorems

    Function: untranslate-specifier-p

    (defun untranslate-specifier-p (x)
      (declare (xargs :guard t))
      (let ((__function__ 'untranslate-specifier-p))
        (declare (ignorable __function__))
        (if (member-eq x *untranslate-specifier-keywords*)
            t
          nil)))

    Theorem: booleanp-of-untranslate-specifier-p

    (defthm booleanp-of-untranslate-specifier-p
      (b* ((yes/no (untranslate-specifier-p x)))
        (booleanp yes/no))
      :rule-classes :rewrite)