Filtering...

ucletter-chars

books/std/strings/ucletter-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
  (b* ((code (char-code x)))
    (and (<= (char-code #\A) code)
      (<= code (char-code #\Z))))
  :parents (character-kinds)
  :short "Recognize uppercase ASCII letters.")