QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
|
Enumerations | |
enum class | quickcpplib::_xxx::tribool::tribool : signed char { quickcpplib::_xxx::tribool::tribool::false_ = -1 , quickcpplib::_xxx::tribool::tribool::true_ = 1 , quickcpplib::_xxx::tribool::tribool::other = 0 , quickcpplib::_xxx::tribool::tribool::indeterminate = 0 , quickcpplib::_xxx::tribool::tribool::unknown = 0 } |
A constexpr C++ 11 tribool. More... | |
Functions | |
constexpr tribool | quickcpplib::_xxx::tribool::make_tribool (int v) noexcept |
Explicit construction from some signed integer. <0 false, >0 true, 0 is other. | |
constexpr tribool | quickcpplib::_xxx::tribool::operator~ (tribool v) noexcept |
If tribool is true return false, if tribool is false return true, else return other. | |
constexpr tribool | quickcpplib::_xxx::tribool::operator& (tribool a, tribool b) noexcept |
If a is true and b is true, return true, if either is false return false, else return other. | |
constexpr tribool | quickcpplib::_xxx::tribool::operator| (tribool a, tribool b) noexcept |
If a is true or b is true, return true, if either is other return other, else return false. | |
constexpr bool | quickcpplib::_xxx::tribool::operator&& (tribool a, tribool b) noexcept |
If a is true and b is true, return true. | |
constexpr bool | quickcpplib::_xxx::tribool::operator|| (tribool a, tribool b) noexcept |
If a is true or b is true, return true. | |
constexpr bool | quickcpplib::_xxx::tribool::true_ (tribool a) noexcept |
Return true if tribool is true. | |
constexpr bool | quickcpplib::_xxx::tribool::false_ (tribool a) noexcept |
Return true if tribool is true. | |
constexpr bool | quickcpplib::_xxx::tribool::other (tribool a) noexcept |
Return true if tribool is other/indeterminate/unknown. | |
constexpr bool | quickcpplib::_xxx::tribool::indeterminate (tribool a) noexcept |
Return true if tribool is other/indeterminate/unknown. | |
constexpr bool | quickcpplib::_xxx::tribool::unknown (tribool a) noexcept |
Return true if tribool is other/indeterminate/unknown. | |
This tries to be mostly compatible with Boost.Tribool, except it's written in C++ 11 and is 100% constexpr throughout by being a strongly typed enum. Note that other
state is aliased to indeterminate
for Boost.Tribool compatibility. It is also aliased to unknown.
Unlike Boost.Tribool this deliberately does not provide automatic conversion to bool. It was always questionable if code coped well with operator!
!= !operator bool
anyway. Use the free functions true_(), false_(), other(), indeterminate() and unknown() to test the contents of this tribool.
For sorting, false < unknown < true. Same for max/min. STL functions operators << and >> for iostream are defined.
|
strong |
A constexpr C++ 11 tribool.
Enumerator | |
---|---|
false_ | False. |
true_ | True. |
other | Other/Indeterminate/Unknown. |
indeterminate | Other/Indeterminate/Unknown. |
unknown | Other/Indeterminate/Unknown. |
|
inlineconstexprnoexcept |
Explicit construction from some signed integer. <0 false, >0 true, 0 is other.
If tribool is true return false, if tribool is false return true, else return other.
|
inlineconstexprnoexcept |
If a is true and b is true, return true.
|
inlineconstexprnoexcept |
If a is true or b is true, return true.
|
inlineconstexprnoexcept |
Return true if tribool is true.
|
inlineconstexprnoexcept |
Return true if tribool is true.
|
inlineconstexprnoexcept |
Return true if tribool is other/indeterminate/unknown.
|
inlineconstexprnoexcept |
Return true if tribool is other/indeterminate/unknown.
|
inlineconstexprnoexcept |
Return true if tribool is other/indeterminate/unknown.