• 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
          • Mmp-trees
          • Semaphore
          • Database
          • Cryptography
          • Rlp
          • Transactions
            • Make-signed-transaction
            • Transaction
            • Maybe-byte-list20
              • Maybe-byte-list20-fix
              • Maybe-byte-list20-equiv
              • Maybe-byte-list20-case
              • Maybe-byte-list20-some
              • Maybe-byte-list20-none
                • Make-maybe-byte-list20-none
                  • Change-maybe-byte-list20-none
                • Maybe-byte-list20p
              • Rlp-decode-transaction
              • Rlp-encode-transaction
              • Rlp-transaction-encoding-p
            • Hex-prefix
            • Basics
            • Addresses
          • Event-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
    • Maybe-byte-list20-none

    Make-maybe-byte-list20-none

    Basic constructor macro for maybe-byte-list20-none structures.

    Syntax
    (make-maybe-byte-list20-none ) 
    

    This is the usual way to construct maybe-byte-list20-none structures. It simply conses together a structure with the specified fields.

    This macro generates a new maybe-byte-list20-none structure from scratch. See also change-maybe-byte-list20-none, which can "change" an existing structure, instead.

    Definition

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

    Macro: make-maybe-byte-list20-none

    (defmacro make-maybe-byte-list20-none (&rest args)
      (std::make-aggregate 'maybe-byte-list20-none
                           args 'nil
                           'make-maybe-byte-list20-none
                           nil))

    Function: maybe-byte-list20-none

    (defun maybe-byte-list20-none nil
      (declare (xargs :guard t))
      (let ((__function__ 'maybe-byte-list20-none))
        (declare (ignorable __function__))
        nil))