2020-02-27 19:09:14 +01:00
|
|
|
function or_true (const b : bool) : bool is b or True
|
|
|
|
function or_false (const b : bool) : bool is b or False
|
|
|
|
function and_true (const b : bool) : bool is b and True
|
2020-02-10 19:27:58 +01:00
|
|
|
function and_false (const b : bool) : bool is b and False
|
2020-02-27 19:09:14 +01:00
|
|
|
function not_bool (const b : bool) : bool is not b
|