• 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-some->val
                  • Make-vl-maybe-zipfile-some
                  • Change-vl-maybe-zipfile-some
                  • 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-some

    Change-vl-maybe-zipfile-some

    Modifying constructor for vl-maybe-zipfile-some structures.

    Syntax
    (change-vl-maybe-zipfile-some x 
                                  [:val <val>]) 
    

    This is an often useful alternative to make-vl-maybe-zipfile-some.

    We construct a new vl-maybe-zipfile-some 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 defprod.

    Macro: change-vl-maybe-zipfile-some

    (defmacro change-vl-maybe-zipfile-some (x &rest args)
      (std::change-aggregate 'vl-maybe-zipfile-some
                             x args
                             '((:val . vl-maybe-zipfile-some->val))
                             'change-vl-maybe-zipfile-some
                             'nil))