Filtering...

lcletter-chars

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