scheme@(guile-user)> (define val (when #f 1))
scheme@(guile-user)> val
scheme@(guile-user)> (null? val)
$6 = #f
scheme@(guile-user)> (boolean? val)
$7 = #f
scheme@(guile-user)> (pair? val)
$8 = #f
scheme@(guile-user)> (when val 1)
$9 = 1
It does evaluate to #t
but what is it?
update: the docs says: "When ... the test evaluates to
#f
, the value of the expression is not specified." So it might be anything, and shouldn't be relied upon for anything.It returns a value which is not
null?
, notboolean?
and notpair?
:It is not an
#f
, as evidenced byAnd it prints as nothing,
So what is it? A value is defined by its interactions. Its internal representation in a specific implementation is not that important.
Short answer is, it is a "not a value". (sic)
Chez Scheme prints it as
#<void>
:And Guile 2.0.13 at ideone.com prints it as
#<unspecified>
.