From 3fdc3e5ee96dca5b11d1694975a65200787eab86 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Thu, 5 Dec 2019 15:11:01 +0900 Subject: Imported Upstream version 1.66.0 --- doc/html/tribool/reference.html | 22 +++++++++++----------- doc/html/tribool/tests.html | 6 +++--- doc/html/tribool/tutorial.html | 12 ++++++------ 3 files changed, 20 insertions(+), 20 deletions(-) (limited to 'doc/html/tribool') diff --git a/doc/html/tribool/reference.html b/doc/html/tribool/reference.html index 262984a49d..f07e2d458f 100644 --- a/doc/html/tribool/reference.html +++ b/doc/html/tribool/reference.html @@ -47,11 +47,11 @@ BOOST_CONSTEXPR tribool operator&&(bool, tribool); BOOST_CONSTEXPR tribool operator&&(indeterminate_keyword_t, tribool); BOOST_CONSTEXPR tribool operator&&(tribool, indeterminate_keyword_t); - BOOST_CONSTEXPR tribool operator||(tribool, tribool); - BOOST_CONSTEXPR tribool operator||(tribool, bool); - BOOST_CONSTEXPR tribool operator||(bool, tribool); - BOOST_CONSTEXPR tribool operator||(indeterminate_keyword_t, tribool); - BOOST_CONSTEXPR tribool operator||(tribool, indeterminate_keyword_t); + BOOST_CONSTEXPR tribool operator||(tribool, tribool); + BOOST_CONSTEXPR tribool operator||(tribool, bool); + BOOST_CONSTEXPR tribool operator||(bool, tribool); + BOOST_CONSTEXPR tribool operator||(indeterminate_keyword_t, tribool); + BOOST_CONSTEXPR tribool operator||(tribool, indeterminate_keyword_t); BOOST_CONSTEXPR tribool operator==(tribool, tribool); BOOST_CONSTEXPR tribool operator==(tribool, bool); BOOST_CONSTEXPR tribool operator==(bool, tribool); @@ -74,24 +74,24 @@ namespace logic { template<typename CharT> class indeterminate_name; template<typename T> - std::basic_string< T > get_default_indeterminate_name(); + std::basic_string< T > get_default_indeterminate_name(); // Returns the character string "indeterminate". template<> - std::basic_string< char > get_default_indeterminate_name<char >(); + std::basic_string< char > get_default_indeterminate_name<char >(); // Returns the wide character string L"indeterminate". template<> - std::basic_string< wchar_t > get_default_indeterminate_name<wchar_t >(); + std::basic_string< wchar_t > get_default_indeterminate_name<wchar_t >(); template<typename CharT, typename Traits> std::basic_ostream< CharT, Traits > & - operator<<(std::basic_ostream< CharT, Traits > &, tribool); + operator<<(std::basic_ostream< CharT, Traits > &, tribool); template<typename CharT, typename Traits> std::basic_ostream< CharT, Traits > & - operator<<(std::basic_ostream< CharT, Traits > &, unspecified); + operator<<(std::basic_ostream< CharT, Traits > &, unspecified); template<typename CharT, typename Traits> std::basic_istream< CharT, Traits > & - operator>>(std::basic_istream< CharT, Traits > &, tribool &); + operator>>(std::basic_istream< CharT, Traits > &, tribool &); } } diff --git a/doc/html/tribool/tests.html b/doc/html/tribool/tests.html index a0b3795fc4..2e8a3372c0 100644 --- a/doc/html/tribool/tests.html +++ b/doc/html/tribool/tests.html @@ -7,7 +7,7 @@ - + @@ -21,7 +21,7 @@
-PrevUpHomeNext +PrevUpHomeNext

@@ -78,7 +78,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/tribool/tutorial.html b/doc/html/tribool/tutorial.html index 82369cfa33..04f48d74e2 100644 --- a/doc/html/tribool/tutorial.html +++ b/doc/html/tribool/tutorial.html @@ -27,13 +27,13 @@

Tutorial

-Basic usage

+Basic usage

The tribool class acts like the built-in bool type, but for 3-state boolean logic. The three states are true, false, @@ -132,7 +132,7 @@ else {

-Renaming the indeterminate state

+Renaming the indeterminate state

Users may introduce additional keywords for the indeterminate value in addition to the implementation-supplied indeterminate using the @@ -147,7 +147,7 @@ if (maybe(x)) { /* ... */ }

-tribool input/output

+tribool input/output

tribool objects may be read from and written to streams by including the boost/logic/tribool_io.hpp header in a -- cgit v1.2.3