• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Vwsim
      • Fgl
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
          • Ps
          • Verilog-printing
          • Basic-printing
            • Vl-println?
            • Vl-printable-p
            • Vl-print
            • Vl-col-after-printing-chars
            • Vl-print-strings-with-commas
            • Vl-col-after-printing-string
            • Vl-string-needs-html-encoding-p
            • Vl-println-markup
            • Vl-print-strings-as-lines
            • Vl-print-url
            • Vl-print-nat
            • Vl-indent
            • Vl-println
              • Vl-println-main
              • Vl-println-raw-fast2
              • Vl-println-raw-fast1
              • Vl-print-markup
              • Vl-ps-seq
              • Vl-cw-ps-seq
              • Vl-when-html
              • Vl-ps-span
            • Printing-locally
            • Formatted-printing
            • Accessing-printed-output
            • Json-printing
            • Vl-printedlist
          • Kit
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Testing-utilities
      • Math
    • Vl-println

    Vl-println-raw-fast1

    Optimized version for the special case when the string to print is empty.

    Signature
    (vl-println-raw-fast1 &key (ps 'ps)) → ps

    Definitions and Theorems

    Function: vl-println-raw-fast1$inline

    (defun
     vl-println-raw-fast1$inline (ps)
     (declare (xargs :stobjs (ps)))
     (declare (xargs :guard t))
     (let
      ((__function__ 'vl-println-raw-fast1))
      (declare (ignorable __function__))
      (vl-ps-seq
       (vl-ps-update-rchars (cons (if (vl-ps->htmlp) "<br/>
    " #\Newline)
                                  (vl-ps->rchars)))
       (vl-ps-update-col 0))))