Package describe.plt contributed by williams [docs]
To load: (require (planet williams/describe:1:5/describe))
Old style:(require (planet "describe.rkt" ("williams" "describe.plt" 1 5)))
Min Racket version: 5.0
Package description:
This library provides routines to describe Racket objects.
Downloads this week: 1
Total downloads: 1259
Tickets:0
Open tickets:0
Primary files:
[no interface available]
 Current version
PLaneT versionExternal versionSourceDLsDocsReq. PLTDate added
(1 5)
1137
5.02013-09-26
To load: (require (planet williams/describe:1:5/describe))
Available in repositories: 4.x
The function float->string is now exported. It was also extended to support big floats from the Math Library. Note that descriptions of big floats do not include the exact decimal value because of the possibility of extremely large value exhausting memory.
No Tickets Currently open for this Package [New Ticket]

 Old versions
PLaneT versionExternal versionSourceDLsDocsReq. PLTDate added
(1 4)
8
5.02013-08-13
To load: (require (planet "describe.rkt" ("williams" "describe.plt" 1 (= 4))))
Available in repositories: 4.x
Added support for extflonums and big floats (from math/bigfloat). Added exact decimal values for inexact reals (floats including extflonums, but not big floats). Added some demonstration code for floating point numbers.
(1 3)
103
5.02010-10-27
To load: (require (planet "describe.rkt" ("williams" "describe.plt" 1 (= 3))))
Available in repositories: 4.x
Fixed the check for not-a-number.
(1 2)
0
5.02010-10-27
To load: (require (planet "describe.rkt" ("williams" "describe.plt" 1 (= 2))))
Available in repositories: 4.x
Added Scribble documentation.
(1 1)
0
[none]
[none]2010-10-27
To load: (require (planet "[file]" ("williams" "describe.plt" 1 (= 1))))
Available in repositories: 4.x
Updated to Racket naming conventions.
(1 0)
11
[none]
[none]2009-11-10
To load: (require (planet "describe.ss" ("williams" "describe.plt" 1 (= 0))))
Available in repositories: 4.x
Initial release of describe. There is no documentation as yet,but just (require (planet williams/describe/describe)) and then(describe <anything>). For example:>(describe (sqrt 10))3.1622776601683795 is an inexact positive real number