4.21 Void (original) (raw)

top contents [← prev](procedures.html "backward to "4.20 Procedures"") [up](data.html "up to "4 Datatypes"") [next →](undefined.html "forward to "4.22 Undefined"")

4.21 Void🔗

The constant # is returned by most forms and procedures that have a side-effect and no useful result.

The # value is always eq? to itself.

procedure(void? v) → boolean?
v : any/c

Returns #t if v is the constant #, #f otherwise.

procedure(void v ...) → void?
v : any/c

Returns the constant #. Eachv argument is ignored.

top contents [← prev](procedures.html "backward to "4.20 Procedures"") [up](data.html "up to "4 Datatypes"") [next →](undefined.html "forward to "4.22 Undefined"")