• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • C
        • Soft
        • Bv
        • Imp-language
        • Ethereum
        • Event-macros
        • Java
          • Atj
          • Aij
          • Language
            • Syntax
              • Grammar
              • Unicode-escapes
              • Unicode-input-char
              • Escape-sequence
              • Identifiers
                • Ascii-identifier-part-p
                • Identifier
                • Tidentifier
                • Umidentifier
                • Ascii-identifier-ignore-p
                • Ascii-identifier-start-p
                • Nonascii-identifier-part-p
                • Nonascii-identifier-ignore-p
                • Nonascii-identifier-start-p
                • Identifier-part-listp
                • Identifier-start-p
                • Identifier-part-p
                • Identifier-ignore-p
                • Tidentifierp
                • No-identifier-ignore-p
                  • No-identifier-ignore-p-basics
                • Umidentifier-fix
                • Tidentifier-fix
                • Identifierp
                • Identifier-fix
                • Umidentifierp
                • Identifier-list
              • Primitive-types
              • Reference-types
              • Unicode-characters
              • Keywords
              • Integer-literals
              • String-literals
              • Octal-digits
              • Hexadecimal-digits
              • Decimal-digits
              • Binary-digits
              • Character-literals
              • Null-literal
              • Floating-point-literals
              • Boolean-literals
              • Package-names
              • Literals
            • Semantics
        • Riscv
        • Bitcoin
        • Zcash
        • Yul
        • ACL2-programming-language
        • Prime-fields
        • Json
        • Syntheto
        • File-io-light
        • Cryptography
        • Number-theory
        • Axe
        • Lists-light
        • Builtins
        • Solidity
        • Helpers
        • Htclient
        • Typed-lists-light
        • Arithmetic-light
      • X86isa
      • Axe
      • Execloader
    • Math
    • Testing-utilities
  • Identifiers

No-identifier-ignore-p

Check if a list of Java Unicode characters does not include any character that is ignorable in identifiers.

Signature
(no-identifier-ignore-p x) → std::bool

This may be useful, for example, to check that an identifier has no ignorable characters, i.e. that it is in some sense ``canonical''.

Definitions and Theorems

Function: no-identifier-ignore-p

(defun no-identifier-ignore-p (x)
  (declare (xargs :guard (unicode-listp x)))
  (let ((__function__ 'no-identifier-ignore-p))
    (declare (ignorable __function__))
    (if (consp x)
        (and (not (identifier-ignore-p (car x)))
             (no-identifier-ignore-p (cdr x)))
      t)))

Subtopics

No-identifier-ignore-p-basics
Basic theorems about no-identifier-ignore-p, generated by std::deflist.