-
Notifications
You must be signed in to change notification settings - Fork 0
module std.bool
Jan Špaček edited this page Apr 12, 2016
·
1 revision
Module std.bool
is a very small module:
-
(not x)
returnstrue
whenx
is false, otherwise it returnsfalse
. -
(xor a b)
returnstrue
if exactly one ofa
andb
is true, otherwise returnsfalse
.
It also reexports true
and false
from module std.core.