Function: parseclj-lex-skip-digits

parseclj-lex-skip-digits is a byte-compiled function defined in parseclj-lex.el.

Signature

(parseclj-lex-skip-digits)

Documentation

Skip all consecutive digits after point.

Source Code

;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-skip-digits ()
  "Skip all consecutive digits after point."
  (while (and (char-after (point))
              (<= ?0 (char-after (point)))
              (<= (char-after (point)) ?9))
    (right-char)))