• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • C
      • Proof-checker-array
      • Soft
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
      • Sidekick
      • Ethereum
      • Leftist-trees
      • 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
      • Taspi
      • Bitcoin
      • Zcash
      • Des
      • X86isa
      • Sha-2
      • Yul
      • Proof-checker-itp13
      • Regex
      • ACL2-programming-language
      • Json
      • Jfkr
      • Equational
      • Cryptography
      • Axe
      • Poseidon
      • Where-do-i-place-my-book
      • Aleo
      • Bigmems
      • Builtins
      • Execloader
      • Solidity
      • Paco
      • Concurrent-programs
      • Bls12-377-curves
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
    • 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.