boost::logic::operator<< — 将不确定三布尔值写入流。
// In header: <boost/logic/tribool_io.hpp> template<typename CharT, typename Traits> std::basic_ostream< CharT, Traits > & operator<<(std::basic_ostream< CharT, Traits > & out, unspecified);
此例程输出整数值 2(如果 (out.flags() & std::ios_base::boolalpha) == 0),或者输出不确定值的名称。不确定值的名称来自 indeterminate_name facet(如果它在输出流的 locale 中已定义),或者来自 get_default_indeterminate_name 函数(如果它未在 locale 中定义,或者 C++ 标准库实现不支持 locale)。
返回 |
|