• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • Proof-checker-array
      • Soft
      • C
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Leftist-trees
      • Java
      • Taspi
      • Bitcoin
      • Riscv
      • Des
      • Ethereum
      • X86isa
      • Sha-2
      • Yul
      • Zcash
      • Proof-checker-itp13
      • Regex
      • ACL2-programming-language
        • Primitive-functions
        • Translated-terms
        • Values
          • Value
          • Symbol-value
            • Symbol-value-fix
            • Symbol-value-equiv
            • Symbol-valuep
            • Make-symbol-value
              • Symbol-value->package
              • Symbol-value->name
              • Change-symbol-value
            • Lower-symbol
            • Lift-symbol-list
            • Symbol-value-option
            • Value-option
            • Lift-value
            • Lift-symbol
            • Value-rational->get
            • Value-integer->get
            • Value-case-rational
            • Value-case-integer
            • Value-symbol-list
            • Lower-value
            • Value-list-of
            • Value-list
            • Symbol-value-list
            • Symbol-value-set
            • Value-t
            • Value-nil
          • Evaluation
          • Program-equivalence
          • Functions
          • Packages
          • Programs
          • Interpreter
          • Evaluation-states
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Bigmems
        • Builtins
        • Execloader
        • Aleo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Symbol-value

    Make-symbol-value

    Basic constructor macro for symbol-value structures.

    Syntax
    (make-symbol-value [:package <package>] 
                       [:name <name>]) 
    

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

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

    Definition

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

    Macro: make-symbol-value

    (defmacro make-symbol-value (&rest args)
      (std::make-aggregate 'symbol-value
                           args '((:package) (:name))
                           'make-symbol-value
                           nil))

    Function: symbol-value

    (defun symbol-value (package name)
      (declare (xargs :guard (and (stringp package) (stringp name))))
      (declare (xargs :guard t))
      (let ((__function__ 'symbol-value))
        (declare (ignorable __function__))
        (b* ((package (mbe :logic (str-fix package)
                           :exec package))
             (name (mbe :logic (str-fix name) :exec name)))
          (list (cons 'package package)
                (cons 'name name)))))