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(如果它在输出流的区域设置中定义),或者来自 get_default_indeterminate_name 函数(如果它未在区域设置中定义,或者 C++ 标准库实现不支持区域设置)。
返回 |
|