X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=doc%2Fhtml%2Fboost%2Flogic%2Ftribool.html;h=5a5cb660e07067061bd21f533d9b5fb347416651;hb=08c1e93fa36a49f49325a07fe91ff92c964c2b6c;hp=41380ad7bddf3d49f882e79b6be37a1f873fa403;hpb=bb4dd8289b351fae6b55e303f189127a394a1edd;p=platform%2Fupstream%2Fboost.git diff --git a/doc/html/boost/logic/tribool.html b/doc/html/boost/logic/tribool.html index 41380ad..5a5cb66 100644 --- a/doc/html/boost/logic/tribool.html +++ b/doc/html/boost/logic/tribool.html @@ -3,7 +3,7 @@ Class tribool - + @@ -36,32 +36,35 @@ public: enum value_t; // construct/copy/destruct - tribool(); - tribool(bool); - tribool(indeterminate_keyword_t); + tribool(); + tribool(bool); + tribool(indeterminate_keyword_t); - // public member functions - operator safe_bool() const; + // public member functions + operator safe_bool() const; // 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();
    +
    tribool();

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

    -
    +
    +++ @@ -69,12 +72,15 @@

    Throws:

    Will not throw.
  2. -
    tribool(bool initial_value);
    +
    tribool(bool initial_value);

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

    -
    +
    +++ @@ -82,12 +88,15 @@

    Throws:

    Will not throw.
  3. -
    tribool(indeterminate_keyword_t);
    +
    tribool(indeterminate_keyword_t);

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

    -
    +
    +++ @@ -97,16 +106,19 @@
    -

    -tribool public member functions

    +

    +tribool public member functions

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

      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.

      -

    Throws:

    Will not throw.
    +
    +++

    Returns: