Function
Returns a union type comprised of singleton(#f) and one or more types.
false-or type #rest more-types => result-type
<type>.
<type>.
<type>.
common-extensions
common-extensions
Returns a union type comprised of singleton(#f), type, any other types passed as more-types.
This function is useful for specifying slot types and function return values.
The expression
false-or(t1, t2, ..)
is type-equivalent to
type-union(singleton(#f), t1, t2, ..)