Dick King <[EMAIL PROTECTED]> writes: > The canonical way to efficiently store large numbers of integers is > > (make-array the-size :element-type '(signed-byte 32)) > > or whatever. There are no guarantees, but CMUCL seems to store > these as bytes rather than as type t.
There _are_ guarantees, at least within each given release: see the function UPGRADED-ARRAY-ELEMENT-TYPE. Cheers, Christophe -- http://www-jcsu.jesus.cam.ac.uk/~csr21/ +44 1223 510 299/+44 7729 383 757 (set-pprint-dispatch 'number (lambda (s o) (declare (special b)) (format s b))) (defvar b "~&Just another Lisp hacker~%") (pprint #36rJesusCollegeCambridge)
