gcl-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gcl-devel] typep and (signed-byte x)


From: Vanuxem Grégory
Subject: [Gcl-devel] typep and (signed-byte x)
Date: Thu, 11 May 2006 18:01:23 +0200

Hi,

Some interactions between typep and '(signed-byte x).
 
With gcl-2.6.7 or gcl-2.6.8pre:

(typep 2000000000000000000000000000000 '(signed-byte 32)) return true
(typep 2000000000000000000000000000000 '(signed-byte 16)) return true
(typep 2000000000000000000000000000000 '(signed-byte 64)) return true
(typep 2000000000000000000000000000000 '(signed-byte 9)) return true


With gcl from cvs just checked out (CLtL1):

(typep 2000000000000000000000000000000 '(signed-byte 32)) return false
(typep 2000000000000000000000000000000 '(signed-byte 64)) return false
(typep 20000 '(signed-byte 512)) return true
(typep 20000 '(signed-byte 64)) return true
(typep 20000 '(signed-byte 32)) return true
(typep 20000 '(signed-byte 16)) return true
(typep 20000 '(signed-byte 9)) return false


Cheers,

Greg




reply via email to

[Prev in Thread] Current Thread [Next in Thread]