Filtering...

nondigit-chars

books/std/strings/nondigit-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 nondigit
  (b* ((code (char-code x)))
    (not (and (<= (char-code #\0) code)
        (<= code (char-code #\9)))))
  :parents (character-kinds)
  :short "Recognize characters that are not decimal digits.")