comparison man/cl.texi @ 42136:5b63c25571a8

Remove most-positive-fixnum, most-negative-fixnum.
author Dave Love <fx@gnu.org>
date Tue, 18 Dec 2001 16:04:56 +0000
parents e9ca70d27e37
children 0a70200bde27
comparison
equal deleted inserted replaced
42135:dfc99f4ae55e 42136:5b63c25571a8
3368 3368
3369 @menu 3369 @menu
3370 * Predicates on Numbers:: `plusp', `oddp', `floatp-safe', etc. 3370 * Predicates on Numbers:: `plusp', `oddp', `floatp-safe', etc.
3371 * Numerical Functions:: `abs', `floor*', etc. 3371 * Numerical Functions:: `abs', `floor*', etc.
3372 * Random Numbers:: `random*', `make-random-state' 3372 * Random Numbers:: `random*', `make-random-state'
3373 * Implementation Parameters:: `most-positive-fixnum', `most-positive-float' 3373 * Implementation Parameters:: `most-positive-float'
3374 @end menu 3374 @end menu
3375 3375
3376 @iftex 3376 @iftex
3377 @secno=1 3377 @secno=1
3378 @end iftex 3378 @end iftex
3574 @node Implementation Parameters, , Random Numbers, Numbers 3574 @node Implementation Parameters, , Random Numbers, Numbers
3575 @section Implementation Parameters 3575 @section Implementation Parameters
3576 3576
3577 @noindent 3577 @noindent
3578 This package defines several useful constants having to with numbers. 3578 This package defines several useful constants having to with numbers.
3579
3580 @defvar most-positive-fixnum
3581 This constant equals the largest value a Lisp integer can hold.
3582 It is typically @code{2^23-1} or @code{2^25-1}.
3583 @end defvar
3584
3585 @defvar most-negative-fixnum
3586 This constant equals the smallest (most negative) value a Lisp
3587 integer can hold.
3588 @end defvar
3589 3579
3590 The following parameters have to do with floating-point numbers. 3580 The following parameters have to do with floating-point numbers.
3591 This package determines their values by exercising the computer's 3581 This package determines their values by exercising the computer's
3592 floating-point arithmetic in various ways. Because this operation 3582 floating-point arithmetic in various ways. Because this operation
3593 might be slow, the code for initializing them is kept in a separate 3583 might be slow, the code for initializing them is kept in a separate