• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
          • Vl-lint
          • Vl-server
          • Vl-gather
          • Vl-zip
            • Vl-zip-opts-p
            • Vl-zipfile
              • Vl-zipfile-fix
              • Vl-read-zip-header
              • Vl-maybe-zipfile
                • Vl-maybe-zipfile-fix
                • Vl-maybe-zipfile-equiv
                • Vl-maybe-zipfile-case
                • Vl-maybe-zipfile-some
                • Vl-maybe-zipfile-none
                  • Make-vl-maybe-zipfile-none
                    • Change-vl-maybe-zipfile-none
                  • Vl-maybe-zipfile-p
                • Vl-read-zip
                • Make-vl-zipfile
                • Vl-zipfile-equiv
                • Vl-zipfile-p
                • Change-vl-zipfile
                • Vl-zipfile->syntax
                • Vl-zipfile->filemap
                • Vl-zipfile->design
                • Vl-zipfile->defines
                • Vl-zipfile->name
                • Vl-zipfile->ltime
                • Vl-zipfile->date
                • Vl-write-zip
              • *vl-zip-help*
              • Vl-zip-top
              • Vl-zip-main
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-maybe-zipfile-none

    Make-vl-maybe-zipfile-none

    Basic constructor macro for vl-maybe-zipfile-none structures.

    Syntax
    (make-vl-maybe-zipfile-none ) 
    

    This is the usual way to construct vl-maybe-zipfile-none structures. It simply conses together a structure with the specified fields.

    This macro generates a new vl-maybe-zipfile-none structure from scratch. See also change-vl-maybe-zipfile-none, which can "change" an existing structure, instead.

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-vl-maybe-zipfile-none

    (defmacro make-vl-maybe-zipfile-none (&rest args)
      (std::make-aggregate 'vl-maybe-zipfile-none
                           args 'nil
                           'make-vl-maybe-zipfile-none
                           nil))

    Function: vl-maybe-zipfile-none

    (defun vl-maybe-zipfile-none nil
      (declare (xargs :guard t))
      (let ((__function__ 'vl-maybe-zipfile-none))
        (declare (ignorable __function__))
        nil))