• 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
        • Java
        • Riscv
        • Bitcoin
          • Bip32
            • Bip32-wallet-structure
            • Bip32-key-trees
            • Bip32-key-serialization
            • Bip32-key-derivation
            • Bip32-executable-attachments
            • Bip32-extended-keys
              • Bip32-chain-code
              • Bip32-ext-pub-key
              • Bip32-ext-priv-key
              • Bip32-ext-key
                • Bip32-ext-key-fix
                • Bip32-ext-key-case
                • Bip32-ext-key-equiv
                • Bip32-ext-key-p
                • Bip32-ext-key-pub
                  • Bip32-ext-key-pub->get
                  • Make-bip32-ext-key-pub
                  • Change-bip32-ext-key-pub
                  • Bip32-ext-key-priv
                  • Bip32-ext-key-kind
              • Bip32-master-key-generation
            • Bech32
            • Bip39
            • Bip44
            • Base58
            • Bip43
            • Bytes
            • Base58check
            • Cryptography
            • Bip-350
            • Bip-173
          • 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
    • Bip32-ext-key-pub

    Change-bip32-ext-key-pub

    Modifying constructor for bip32-ext-key-pub structures.

    Syntax
    (change-bip32-ext-key-pub x 
                              [:get <get>]) 
    

    This is an often useful alternative to make-bip32-ext-key-pub.

    We construct a new bip32-ext-key-pub 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-bip32-ext-key-pub

    (defmacro change-bip32-ext-key-pub (x &rest args)
      (std::change-aggregate 'bip32-ext-key-pub
                             x
                             args '((:get . bip32-ext-key-pub->get))
                             'change-bip32-ext-key-pub
                             'nil))