• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
          • Preprocessor
          • Vl-loadconfig
          • Vl-loadstate
          • Lexer
            • Lex-strings
            • Lex-identifiers
            • Vl-typo-uppercase-p
            • Vl-typo-number-p
            • Vl-typo-lowercase-p
            • Lex-numbers
            • Chartypes
            • Vl-lex
            • Defchar
            • Tokens
            • Lex-keywords
            • Lexstate
            • Make-test-tokens
            • Lexer-utils
              • Def-prefix/remainder-thms
              • Def-token/remainder-thms
              • Vl-read-until-literal
                • Vl-read-until-literal-prefix/remainder-thms
                • Vl-read-until-literal-impl
                • Vl-read-through-literal
                • Vl-matches-string-p
                • Vl-read-literal
                • Vl-echarlist-kill-underscores
                • Vl-read-some-literal
              • Lex-comments
              • Vl-typo-uppercase-list-p
              • Vl-typo-lowercase-list-p
              • Vl-typo-number-list-p
            • Parser
            • Vl-load-merge-descriptions
            • Vl-find-basename/extension
            • Vl-load-file
            • Vl-loadresult
            • Scope-of-defines
            • Vl-find-file
            • Vl-flush-out-descriptions
            • Vl-description
            • Vl-read-file
            • Vl-includeskips-report-gather
            • Vl-load-main
            • Extended-characters
            • Vl-load
            • Vl-load-description
            • Vl-descriptions-left-to-load
            • Inject-warnings
            • Vl-preprocess-debug
            • Vl-write-preprocessor-debug-file
            • Vl-read-file-report-gather
            • Vl-load-descriptions
            • Vl-load-files
            • Translate-off
            • Vl-load-read-file-hook
            • Vl-read-file-report
            • Vl-loadstate-pad
            • Vl-load-summary
            • Vl-collect-modules-from-descriptions
            • Vl-loadstate->warnings
            • Vl-iskips-report
            • Vl-descriptionlist
          • Warnings
          • Getting-started
          • Utilities
          • Printer
          • Kit
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-read-until-literal

    Vl-read-until-literal-impl

    Signature
    (vl-read-until-literal-impl string echars acc) → (mv * * *)
    Arguments
    echars — Guard (vl-echarlist-p echars).

    Definitions and Theorems

    Function: vl-read-until-literal-impl

    (defun vl-read-until-literal-impl (string echars acc)
     (declare (type string string))
     (declare (xargs :guard (vl-echarlist-p echars)))
     (declare (xargs :guard (not (equal string ""))))
     (let ((__function__ 'vl-read-until-literal-impl))
       (declare (ignorable __function__))
       (cond ((atom echars) (mv nil acc echars))
             ((vl-matches-string-p string echars)
              (mv t acc echars))
             (t (vl-read-until-literal-impl string (cdr echars)
                                            (cons (car echars) acc))))))