Filtering...

ucletter-digit-chars

books/std/strings/ucletter-digit-chars
other
(in-package "STR")
other
(include-book "std/strings/charset" :dir :system)
other
(include-book "xdoc/constructors" :dir :system)
other
(local (include-book "std/basic/code-char-char-code-with-force" :dir :system))
other
(defcharset ucletter/digit
  (b* ((code (char-code x)))
    (or (and (<= (char-code #\A) code)
        (<= code (char-code #\Z)))
      (and (<= (char-code #\0) code)
        (<= code (char-code #\9)))))
  :parents (character-kinds)
  :short "Recognize uppercase ASCII letters.")