• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
      • Theories
      • Rule-classes
      • Proof-builder
      • Recursion-and-induction
      • Hons-and-memoization
      • Events
      • Parallelism
      • History
      • Programming
        • Defun
        • Declare
        • System-utilities
        • Stobj
        • State
        • Mutual-recursion
        • Memoize
        • Mbe
        • Io
        • Defpkg
        • Apply$
        • Loop$
        • Programming-with-state
        • Arrays
        • Characters
        • Time$
        • Defmacro
        • Loop$-primer
        • Fast-alists
        • Defconst
        • Evaluation
        • Guard
        • Equality-variants
        • Compilation
        • Hons
        • ACL2-built-ins
        • Developers-guide
        • System-attachments
        • Advanced-features
        • Set-check-invariant-risk
        • Numbers
        • Efficiency
        • Irrelevant-formals
        • Introduction-to-programming-in-ACL2-for-those-who-know-lisp
        • Redefining-programs
        • Lists
        • Invariant-risk
        • Errors
        • Defabbrev
        • Conses
        • Alists
        • Set-register-invariant-risk
        • Strings
          • Std/strings
            • Pretty-printing
              • Pretty-printing-implementation
              • Eviscerate
              • Pretty
              • Revappend-pretty
                • Pretty-list
              • Printtree
              • Base64
              • Charset-p
              • Strtok!
              • Cases
              • Concatenation
              • Html-encoding
              • Character-kinds
              • Substrings
              • Strtok
              • Equivalences
              • Url-encoding
              • Lines
              • Explode-implode-equalities
              • Ordering
              • Numbers
              • Pad-trim
              • Coercion
              • Std/strings/digit-to-char
              • Substitution
              • Symbols
            • String-listp
            • Stringp
            • Length
            • Search
            • Remove-duplicates
            • Position
            • Coerce
            • Concatenate
            • Reverse
            • String
            • Subseq
            • Substitute
            • String-upcase
            • String-downcase
            • Count
            • Char
            • String<
            • String-equal
            • String-utilities
            • String-append
            • String>=
            • String<=
            • String>
            • Hex-digit-char-theorems
            • String-downcase-gen
            • String-upcase-gen
          • Program-wrapper
          • Get-internal-time
          • Basics
          • Packages
          • Oracle-eval
          • Defmacro-untouchable
          • <<
          • Primitive
          • Revert-world
          • Unmemoize
          • Set-duplicate-keys-action
          • Symbols
          • Def-list-constructor
          • Easy-simplify-term
          • Defiteration
          • Fake-oracle-eval
          • Defopen
          • Sleep
        • Operational-semantics
        • Real
        • Start-here
        • Debugging
        • Miscellaneous
        • Output-controls
        • Macros
        • Interfacing-tools
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Pretty-printing

    Revappend-pretty

    Pretty-print any ACL2 object, in reverse order, onto a reverse-order character list.

    Signature
    (revappend-pretty x 
                      acc &key (config '*default-printconfig*) 
                      (col '0) 
                      (eviscp 'nil)) 
     
      → 
    new-acc
    Arguments
    x — The ACL2 object to pretty-print.
    acc — The reverse-order character list to print to.
    config — Optional pretty-printer configuration options.
        Guard (printconfig-p config).
    col — Optional starting column number.
        Guard (natp col).
    eviscp — Optional flag for use with eviscerated objects.
        Guard (booleanp eviscp).
    Returns
    new-acc — Type (character-listp new-acc), given (character-listp acc).

    This is very similar to pretty, except that it can be used to extend existing character lists. See for instance the discussion in revappend-chars.

    Definitions and Theorems

    Function: revappend-pretty-fn

    (defun revappend-pretty-fn (x acc config col eviscp)
      (declare (xargs :guard (and (printconfig-p config)
                                  (natp col)
                                  (booleanp eviscp))))
      (let ((acl2::__function__ 'revappend-pretty))
        (declare (ignorable acl2::__function__))
        (ppr x col config eviscp acc)))

    Theorem: character-listp-of-revappend-pretty

    (defthm character-listp-of-revappend-pretty
      (implies
           (character-listp acc)
           (b* ((new-acc (revappend-pretty-fn x acc config col eviscp)))
             (character-listp new-acc)))
      :rule-classes :rewrite)