123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456 |
- #ifndef BOOST_LOGIC_TRIBOOL_HPP
- #define BOOST_LOGIC_TRIBOOL_HPP
- #include <boost/logic/tribool_fwd.hpp>
- #include <boost/config.hpp>
- #include <boost/detail/workaround.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- # pragma once
- #endif
- namespace boost { namespace logic {
- namespace detail {
- struct indeterminate_t
- {
- #if BOOST_WORKAROUND(__BORLANDC__, < 0x0600)
- char dummy_;
- #endif
- };
- }
- typedef bool (*indeterminate_keyword_t)(tribool, detail::indeterminate_t);
- BOOST_CONSTEXPR inline bool
- indeterminate(tribool x,
- detail::indeterminate_t dummy = detail::indeterminate_t()) BOOST_NOEXCEPT;
- class tribool
- {
- private:
-
- struct dummy {
- void nonnull() {};
- };
- typedef void (dummy::*safe_bool)();
- public:
-
- BOOST_CONSTEXPR tribool() BOOST_NOEXCEPT : value(false_value) {}
-
- BOOST_CONSTEXPR tribool(bool initial_value) BOOST_NOEXCEPT : value(initial_value? true_value : false_value) {}
-
- BOOST_CONSTEXPR tribool(indeterminate_keyword_t) BOOST_NOEXCEPT : value(indeterminate_value) {}
-
- BOOST_CONSTEXPR operator safe_bool() const BOOST_NOEXCEPT
- {
- return value == true_value? &dummy::nonnull : 0;
- }
-
- enum value_t { false_value, true_value, indeterminate_value } value;
- };
- BOOST_CONSTEXPR inline bool indeterminate(tribool x, detail::indeterminate_t) BOOST_NOEXCEPT
- {
- return x.value == tribool::indeterminate_value;
- }
- BOOST_CONSTEXPR inline tribool operator!(tribool x) BOOST_NOEXCEPT
- {
- return x.value == tribool::false_value? tribool(true)
- :x.value == tribool::true_value? tribool(false)
- :tribool(indeterminate);
- }
- BOOST_CONSTEXPR inline tribool operator&&(tribool x, tribool y) BOOST_NOEXCEPT
- {
- return (static_cast<bool>(!x) || static_cast<bool>(!y))
- ? tribool(false)
- : ((static_cast<bool>(x) && static_cast<bool>(y)) ? tribool(true) : indeterminate)
- ;
- }
- BOOST_CONSTEXPR inline tribool operator&&(tribool x, bool y) BOOST_NOEXCEPT
- { return y? x : tribool(false); }
- BOOST_CONSTEXPR inline tribool operator&&(bool x, tribool y) BOOST_NOEXCEPT
- { return x? y : tribool(false); }
- BOOST_CONSTEXPR inline tribool operator&&(indeterminate_keyword_t, tribool x) BOOST_NOEXCEPT
- { return !x? tribool(false) : tribool(indeterminate); }
- BOOST_CONSTEXPR inline tribool operator&&(tribool x, indeterminate_keyword_t) BOOST_NOEXCEPT
- { return !x? tribool(false) : tribool(indeterminate); }
- BOOST_CONSTEXPR inline tribool operator||(tribool x, tribool y) BOOST_NOEXCEPT
- {
- return (static_cast<bool>(!x) && static_cast<bool>(!y))
- ? tribool(false)
- : ((static_cast<bool>(x) || static_cast<bool>(y)) ? tribool(true) : tribool(indeterminate))
- ;
- }
- BOOST_CONSTEXPR inline tribool operator||(tribool x, bool y) BOOST_NOEXCEPT
- { return y? tribool(true) : x; }
- BOOST_CONSTEXPR inline tribool operator||(bool x, tribool y) BOOST_NOEXCEPT
- { return x? tribool(true) : y; }
- BOOST_CONSTEXPR inline tribool operator||(indeterminate_keyword_t, tribool x) BOOST_NOEXCEPT
- { return x? tribool(true) : tribool(indeterminate); }
- BOOST_CONSTEXPR inline tribool operator||(tribool x, indeterminate_keyword_t) BOOST_NOEXCEPT
- { return x? tribool(true) : tribool(indeterminate); }
- BOOST_CONSTEXPR inline tribool operator==(tribool x, tribool y) BOOST_NOEXCEPT
- {
- return (indeterminate(x) || indeterminate(y))
- ? indeterminate
- : ((x && y) || (!x && !y))
- ;
- }
- BOOST_CONSTEXPR inline tribool operator==(tribool x, bool y) BOOST_NOEXCEPT { return x == tribool(y); }
- BOOST_CONSTEXPR inline tribool operator==(bool x, tribool y) BOOST_NOEXCEPT { return tribool(x) == y; }
- BOOST_CONSTEXPR inline tribool operator==(indeterminate_keyword_t, tribool x) BOOST_NOEXCEPT
- { return tribool(indeterminate) == x; }
- BOOST_CONSTEXPR inline tribool operator==(tribool x, indeterminate_keyword_t) BOOST_NOEXCEPT
- { return tribool(indeterminate) == x; }
- BOOST_CONSTEXPR inline tribool operator!=(tribool x, tribool y) BOOST_NOEXCEPT
- {
- return (indeterminate(x) || indeterminate(y))
- ? indeterminate
- : !((x && y) || (!x && !y))
- ;
- }
- BOOST_CONSTEXPR inline tribool operator!=(tribool x, bool y) BOOST_NOEXCEPT { return x != tribool(y); }
- BOOST_CONSTEXPR inline tribool operator!=(bool x, tribool y) BOOST_NOEXCEPT { return tribool(x) != y; }
- BOOST_CONSTEXPR inline tribool operator!=(indeterminate_keyword_t, tribool x) BOOST_NOEXCEPT
- { return tribool(indeterminate) != x; }
- BOOST_CONSTEXPR inline tribool operator!=(tribool x, indeterminate_keyword_t) BOOST_NOEXCEPT
- { return x != tribool(indeterminate); }
- } }
- namespace boost {
- using logic::tribool;
- using logic::indeterminate;
- }
- #define BOOST_TRIBOOL_THIRD_STATE(Name) \
- inline bool \
- Name(boost::logic::tribool x, \
- boost::logic::detail::indeterminate_t = \
- boost::logic::detail::indeterminate_t()) \
- { return x.value == boost::logic::tribool::indeterminate_value; }
- #endif
|