PARSE-NUMBER is a library of functions for parsing strings into one of the standard Common Lisp number types without using the reader.
sharplispers/parse-number
master
Name already in use
Code
-
Clone
Use Git or checkout with SVN using the web URL.
Work fast with our official CLI. Learn more about the CLI.
- Open with GitHub Desktop
- Download ZIP
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
-*- Outline -*- PARSE-NUMBER is a library of functions which accept an arbitrary string and attempt to parse it, if possible into one of the standard Common Lisp number types without using the reader, or else signal an error of type INVALID-NUMBER * Functions PARSE-NUMBER (string &key start end radix) PARSE-REAL-NUMBER (string &key start end radix) PARSE-POSITIVE-REAL-NUMBER (string &key start end radix) * Error conditions INVALID-NUMBER (inherits PARSE-ERROR) ** Accessors INVALID-NUMBER-VALUE INVALID-NUMBER-REASON
About
PARSE-NUMBER is a library of functions for parsing strings into one of the standard Common Lisp number types without using the reader.