Previous: built-in booleans true, Up: built-in booleans [Contents][Index]
Type of the boolean value #f
.
<false>
: <false> type-constructor objReturn #f
if obj is #f
.
(new <false> #f) ⇒ #f (new <false> 12) error→ type violation
<false>
: <boolean> type-predicate objThe type predicate is false?
. Return #f
if obj is
#f
.
(is-a? #f <false>) ⇒ #f (is-a? #t <false>) error→ type error
<false>
: <non-negative-fixnum> hash-function falseThe hash function is boolean-hash
.
(hash #f) ⇒ 0