• 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
            • Rlp-tree
            • Rlp-decoding-executable
              • Rlp-error
              • Rlp-parse-tree
              • Rlp-decodex-tree
              • Maybe-rlp-error
                • Maybe-rlp-error-fix
                • Maybe-rlp-error-case
                • Maybe-rlp-error-equiv
                • Maybe-rlp-error-some
                • Maybe-rlp-error-none
                  • Make-maybe-rlp-error-none
                  • Change-maybe-rlp-error-none
                  • Maybe-rlp-error-p
                • Rlp-decodex-bytes
                • Rlp-decodex-scalar
              • Rlp-decodability
              • Rlp-encoding
              • Rlp-decoding-declarative
              • Rlp-big-endian-representations
            • Transactions
            • 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-rlp-error-none

    Change-maybe-rlp-error-none

    Modifying constructor for maybe-rlp-error-none structures.

    Syntax
    (change-maybe-rlp-error-none x 
                                 ) 
    

    This is an often useful alternative to make-maybe-rlp-error-none.

    We construct a new maybe-rlp-error-none structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

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

    Macro: change-maybe-rlp-error-none

    (defmacro change-maybe-rlp-error-none (x &rest args)
      (std::change-aggregate 'maybe-rlp-error-none
                             x args 'nil
                             'change-maybe-rlp-error-none
                             'nil))