[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
TYPEP bug
- To: info-mcl@ministry.cambridge.apple.com
- Subject: TYPEP bug
- From: gat@robotics.jpl.nasa.gov (Erann Gat)
- Date: 28 Jul 1993 18:24:37 GMT
- Distribution: world
- Newsgroups: comp.lang.lisp.mcl
- Organization: Jet Propulsion Laboratory, Pasadena, CA
I believe there is a bug in TYPEP:
Welcome to Macintosh Common Lisp Version 2.0p2!
? (typep #(1 2 3) '(vector integer 3))
T
? (typep #(1 2 3) '(vector fixnum 3))
NIL
? (typep #(1 2 3) '(vector (mod 31) 3))
NIL
?
All of the above should have returned T (or am I just being dense?).
Erann Gat
gat@robotics.jpl.nasa.gov
- Follow-Ups:
- TYPEP bug
- From: hall@research.att.com (Bob Hall)