• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • Proof-checker-array
      • Soft
      • C
        • Syntax-for-tools
        • Atc
        • Language
          • Abstract-syntax
          • Integer-ranges
          • Implementation-environments
          • Dynamic-semantics
          • Static-semantics
          • Grammar
          • Integer-formats
          • Types
          • Portable-ascii-identifiers
          • Values
          • Integer-operations
          • Computation-states
          • Object-designators
          • Operations
          • Errors
          • Tag-environments
          • Function-environments
          • Character-sets
            • Source-character-set
              • Source-char-recognizer+fixer+mappings+fixtype
              • Ascii-basic-source-charp
              • Ascii-basic-source-char
              • Ascii-to-source-char-number
              • Ascii-basic-source-char-fix
              • Basic-source-charp
              • Ext-source-charp
              • Exec-character-set
            • Flexible-array-member-removal
            • Arithmetic-operations
            • Pointer-operations
            • Bytes
            • Keywords
            • Real-operations
            • Array-operations
            • Scalar-operations
            • Structure-operations
          • Representation
          • Transformation-tools
          • Insertion-sort
          • Pack
        • Farray
        • Rp-rewriter
        • Riscv
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Bitcoin
        • Des
        • Ethereum
        • X86isa
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Bigmems
        • Builtins
        • Execloader
        • Aleo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Community
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Source-character-set

    Ext-source-charp

    Recognize the extended source characters.

    Signature
    (ext-source-charp x) → yes/no
    Returns
    yes/no — Type (booleanp yes/no).

    These are the non-basic source-characters.

    Definitions and Theorems

    Function: ext-source-charp

    (defun ext-source-charp (x)
      (declare (xargs :guard t))
      (let ((__function__ 'ext-source-charp))
        (declare (ignorable __function__))
        (and (source-charp x)
             (not (basic-source-charp x)))))

    Theorem: booleanp-of-ext-source-charp

    (defthm booleanp-of-ext-source-charp
      (b* ((yes/no (ext-source-charp x)))
        (booleanp yes/no))
      :rule-classes :rewrite)

    Theorem: source-charp-alt-def

    (defthm source-charp-alt-def
      (equal (source-charp x)
             (or (basic-source-charp x)
                 (ext-source-charp x))))