• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
          • Svtv-data
          • Defsvtv$
          • Svtv-run
          • Defsvtv-phasewise
          • Svtv
          • Svtv-spec
          • Defsvtv
          • Process.lisp
          • Svtv-doc
          • Svtv-chase$
          • Svtv-versus-stv
          • Svtv-debug-fsm
          • Structure.lisp
          • Svtv-debug
          • Def-pipeline-thm
          • Expand.lisp
            • Svtv-parse-path-indices
            • Svtv-extend-entrylist
            • Svtv-parse-path/select-aux
            • Svtv-fsm-add-names
            • Svtv-1wire->lhs
            • Svtv-wires->lhses
            • Svtv-concat->lhs
            • Svtv-wire->lhs!
            • Svtv-lines->overrides
            • Svtv-wire->lhs
            • Svtv-mod-alias-guard
            • Svtv-fsm-mod-alias-guard
            • Svtv-parse-path/select
            • Svtv-expand-lines
            • Svtv-max-length
            • Msg-list
            • Def-cycle-thm
            • Svtv-utilities
            • Svtv-debug$
            • Defsvtv$-phasewise
          • Svex-decomposition-methodology
          • Sv-versus-esim
          • Svex-decomp
          • Svex-compose-dfs
          • Svex-compilation
          • Moddb
          • Svmods
          • Svstmt
          • Sv-tutorial
          • Expressions
          • Symbolic-test-vector
          • Vl-to-svex
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Expand.lisp

    Msg-list

    Signature
    (msg-list x) → msg
    Arguments
    x — list of msg objects.
    Returns
    msg — single msg object containing the list.

    Definitions and Theorems

    Function: msg-list

    (defun msg-list (x)
      (declare (xargs :guard t))
      (let ((__function__ 'msg-list))
        (declare (ignorable __function__))
        (if (atom x)
            ""
          (if (car x)
              (msg "~@0~%~@1" (car x)
                   (msg-list (cdr x)))
            (msg-list (cdr x))))))