From 4fadd968fa12130524c8380f33fcfe25d4de79e5 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 13 Sep 2017 11:24:46 +0900 Subject: Imported Upstream version 1.65.0 Change-Id: Icf8400b375482cb11bcf77440a6934ba360d6ba4 Signed-off-by: DongHun Kwak --- doc/html/boost/logic/tribool.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'doc/html/boost/logic/tribool.html') diff --git a/doc/html/boost/logic/tribool.html b/doc/html/boost/logic/tribool.html index 2c1f267ef6..7c0526e693 100644 --- a/doc/html/boost/logic/tribool.html +++ b/doc/html/boost/logic/tribool.html @@ -37,27 +37,27 @@ public: enum value_t; // construct/copy/destruct - tribool() noexcept; - tribool(bool) noexcept; - tribool(indeterminate_keyword_t) noexcept; + tribool() noexcept; + tribool(bool) noexcept; + tribool(indeterminate_keyword_t) noexcept; - // public member functions - BOOST_CONSTEXPR operator safe_bool() const noexcept; + // public member functions + BOOST_CONSTEXPR operator safe_bool() const noexcept; // public data members enum boost::logic::tribool::value_t value; };
-

Description

+

Description

3-state boolean values are either true, false, or indeterminate.

-

+

tribool public construct/copy/destruct

  1. -
    tribool() noexcept;
    +
    tribool() noexcept;

    Construct a new 3-state boolean value with the value 'false'.

    @@ -73,7 +73,7 @@
  • -
    tribool(bool initial_value) noexcept;
    +
    tribool(bool initial_value) noexcept;

    Construct a new 3-state boolean value with the given boolean value, which may be true or false.

    @@ -89,7 +89,7 @@
  • -
    tribool(indeterminate_keyword_t) noexcept;
    +
    tribool(indeterminate_keyword_t) noexcept;

    Construct a new 3-state boolean value with an indeterminate value.

    @@ -107,10 +107,10 @@
  • -

    -tribool public member functions

    +

    +tribool public member functions

    1. -
      BOOST_CONSTEXPR operator safe_bool() const noexcept;
      +
      BOOST_CONSTEXPR operator safe_bool() const noexcept;

      Use a 3-state boolean in a boolean context. Will evaluate true in a boolean context only when the 3-state boolean is definitely true.

      -- cgit v1.2.3