• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • 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
        • Aleobft
        • Aleovm
        • Leo
          • Grammar
          • Early-version
            • Json2ast
            • Testing
            • Definition
              • Flattening
              • Abstract-syntax
                • Expression
                • Syntax-abstraction
                • Statement
                • Files
                • Input-files
                • Identifiers
                • Types
                • Struct-init
                • Branch
                • Statements
                • Format-strings
                • Input-syntax-abstraction
                • Expressions
                  • Binop
                    • Binopp
                    • Binop-case
                    • Binop-fix
                    • Binop-kind
                    • Binop-equiv
                    • Binop-add
                    • Binop-sub
                    • Binop-gt
                    • Binop-sub-wrapped
                    • Binop-shr-wrapped
                    • Binop-shr
                    • Binop-shl-wrapped
                    • Binop-shl
                    • Binop-rem-wrapped
                    • Binop-rem
                    • Binop-pow-wrapped
                    • Binop-pow
                    • Binop-or
                    • Binop-nor
                    • Binop-ne
                    • Binop-nand
                    • Binop-mul-wrapped
                    • Binop-mul
                    • Binop-lt
                    • Binop-le
                    • Binop-ge
                    • Binop-eq
                    • Binop-div-wrapped
                    • Binop-div
                    • Binop-bitxor
                    • Binop-bitior
                    • Binop-bitand
                    • Binop-and
                      • Make-binop-and
                        • Change-binop-and
                      • Binop-add-wrapped
                    • Unop
                    • Expression-option
                    • Struct-init-list-result
                    • Expression-option-result
                    • Unop-result
                    • Struct-init-result
                    • Expression-result
                    • Expression-list-result
                    • Binop-result
                    • Expression-fixtypes
                  • Output-files
                  • Addresses
                  • Literals
                  • Characters
                  • Expression-list
                  • Statement-list
                  • Output-syntax-abstraction
                  • Struct-init-list
                  • Branch-list
                  • Annotations
                  • Abstract-syntax-trees
                  • Symbols
                  • Keywords
                  • Programs
                  • Packages
                  • Bit-sizes
                • Dynamic-semantics
                • Compilation
                • Static-semantics
                • Concrete-syntax
        • 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
    • Binop-and

    Make-binop-and

    Basic constructor macro for binop-and structures.

    Syntax
    (make-binop-and ) 
    

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

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

    Definition

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

    Macro: make-binop-and

    (defmacro make-binop-and (&rest args)
      (std::make-aggregate 'binop-and
                           args 'nil
                           'make-binop-and
                           nil))

    Function: binop-and

    (defun binop-and nil
      (declare (xargs :guard t))
      (let ((__function__ 'binop-and))
        (declare (ignorable __function__))
        (cons :and (list))))