diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-12-12 08:57:21 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-12-12 08:57:21 -0800 |
commit | 53b88113d3e0b86a234c5d96df0dceea737e571e (patch) | |
tree | abcc54e99ab09b92a47566de7defa9178e2e484a /txr.1 | |
parent | 236cc3ba8e03c117dc0c37d2a4725c496aa35460 (diff) | |
download | txr-53b88113d3e0b86a234c5d96df0dceea737e571e.tar.gz txr-53b88113d3e0b86a234c5d96df0dceea737e571e.tar.bz2 txr-53b88113d3e0b86a234c5d96df0dceea737e571e.zip |
Update typeof documentation
* txr.1: more types are listed under typeof.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -13543,6 +13543,12 @@ Character. Fixnum integer: an integer that fits into the value word, not having to be heap allocated. +.coIP bignum +A bignum integer: arbitrary precision integer that is heap-allocated. + +.coIP float +Floating-point number. + .coIP sym Symbol. @@ -13558,17 +13564,27 @@ Vector. .coIP lcons Lazy cons. +.coIP range +Range object. + .coIP lstr Lazy string. .coIP env Function/variable binding environment. -.coIP bignum -A bignum integer: arbitrary precision integer that is heap-allocated. +.coIP hash +Hash table. + +.coIP stream +I/O stream of any kind. + +.coIP struct-type +A structure type: the type of any one of the values which represents +a structure type. .PP -There are additional kinds of objects, such as streams. +There are more kinds of objects, such as user-defined structures. .coNP Function @ subtypep .synb |