• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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
        • Soft
        • C
        • Bv
        • Imp-language
        • Event-macros
        • Java
        • Bitcoin
        • Ethereum
        • Yul
        • Zcash
        • ACL2-programming-language
        • Prime-fields
        • Json
          • Parser-output-to-values
          • Values
            • Value/valuelist/member/memberlist
              • Value
                • Value-case
                • Value-equiv
                • Valuep
                • Value-string
                • Value-object
                • Value-number
                • Value-array
                • Value-kind
                • Value-true
                  • Make-value-true
                    • Change-value-true
                  • Value-null
                  • Value-false
                  • Value-fix
                  • Value-count
                • Member
                • Value-list
                • Member-list
              • Value-option
              • Irr-value
              • Irr-member
            • Syntax
            • Patbind-pattern
            • Operations
          • 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
    • Value-true

    Make-value-true

    Basic constructor macro for value-true structures.

    Syntax
    (make-value-true ) 
    

    This is the usual way to construct value-true structures. It simply conses together a structure with the specified fields.

    This macro generates a new value-true structure from scratch. See also change-value-true, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by fty::defprod.

    Macro: make-value-true

    (defmacro make-value-true (&rest args)
      (std::make-aggregate 'value-true
                           args 'nil
                           'make-value-true
                           nil))

    Function: value-true

    (defun value-true nil
      (declare (xargs :guard t))
      (let ((__function__ 'value-true))
        (declare (ignorable __function__))
        (cons :true (list))))