• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
        • Deftreeops
          • Deftreeops-implementation
            • Deftreeops-event-generation
            • Deftreeops-info
            • Deftreeops-process-inputs-and-gen-everything
            • Deftreeops-fn
            • Deftreeops-table
              • Deftreeops-table-value
              • Deftreeops-table-value-option
                • Deftreeops-table-value-option-fix
                • Deftreeops-table-value-option-equiv
                • Deftreeops-table-value-option-case
                • Deftreeops-table-value-option-some
                • Deftreeops-table-value-option-none
                  • Make-deftreeops-table-value-option-none
                    • Change-deftreeops-table-value-option-none
                  • Deftreeops-table-value-optionp
                • Deftreeops-table-lookup
                • Deftreeops-table-add
                • Deftreeops-table-definition
              • Deftreeops-input-processing
              • Deftreeops-macro-definition
            • Deftreeops-show-event
            • Deftreeops-show-info
          • Defdefparse
          • Defgrammar
          • Tree-utilities
          • Notation
          • Grammar-parser
          • Meta-circular-validation
          • Parsing-primitives-defresult
          • Parsing-primitives-seq
          • Operations
          • Examples
          • Differences-with-paper
          • Constructor-utilities
          • Grammar-printer
          • Parsing-tools
        • Vwsim
        • Isar
        • Wp-gen
        • Dimacs-reader
        • Pfcs
        • Legacy-defrstobj
        • C
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Deftreeops-table-value-option-none

    Make-deftreeops-table-value-option-none

    Basic constructor macro for deftreeops-table-value-option-none structures.

    Syntax
    (make-deftreeops-table-value-option-none ) 
    

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

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

    Definition

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

    Macro: make-deftreeops-table-value-option-none

    (defmacro make-deftreeops-table-value-option-none (&rest args)
      (std::make-aggregate 'deftreeops-table-value-option-none
                           args 'nil
                           'make-deftreeops-table-value-option-none
                           nil))

    Function: deftreeops-table-value-option-none

    (defun deftreeops-table-value-option-none nil
      (declare (xargs :guard t))
      (let ((__function__ 'deftreeops-table-value-option-none))
        (declare (ignorable __function__))
        nil))