Crate bool

Source
Expand description

This crate provides the boolean algebra based types True and [False] as enum values. They serve a similar purpose as the built-in primitive boolean types trueand false` respectively (but are not interchangeable).

Macros§

b
Transforms a value with type Bool into the equivalent value with the primitive type bool.

Enums§

Boolean
Enum with two possible values: True or False which represent the logical values true and false respectively.
BooleanError