Function: eshell--numeric-string-p
eshell--numeric-string-p is a byte-compiled function defined in
esh-util.el.gz.
Signature
(eshell--numeric-string-p STRING)
Documentation
Return non-nil if STRING has been marked as numeric.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-util.el.gz
(defsubst eshell--numeric-string-p (string)
"Return non-nil if STRING has been marked as numeric."
(and (stringp string)
(length> string 0)
(not (text-property-not-all 0 (length string) 'number t string))))