29#ifndef _GLIBCXX_TR2_BOOL_SET_TCC
30#define _GLIBCXX_TR2_BOOL_SET_TCC 1
33#pragma GCC system_header
36namespace std _GLIBCXX_VISIBILITY(default)
38_GLIBCXX_BEGIN_NAMESPACE_VERSION
42 bool_set::_Bool_set_val
44 { _S_true_, _S_false, _S_indet, _S_empty };
46 bool_set::_Bool_set_val
47 bool_set::_S_xor[4][4] =
48 { { _S_false, _S_true_, _S_indet, _S_empty },
49 { _S_true_, _S_false, _S_indet, _S_empty },
50 { _S_indet, _S_indet, _S_indet, _S_empty },
51 { _S_empty, _S_empty, _S_empty, _S_empty } };
53 bool_set::_Bool_set_val
54 bool_set::_S_or[4][4] =
55 { { _S_false, _S_true_, _S_indet, _S_empty },
56 { _S_true_, _S_true_, _S_true_, _S_empty },
57 { _S_indet, _S_true_, _S_indet, _S_empty },
58 { _S_empty, _S_empty, _S_empty, _S_empty } };
60 bool_set::_Bool_set_val
61 bool_set::_S_and[4][4] =
62 { { _S_false, _S_false, _S_false, _S_empty },
63 { _S_false, _S_true_, _S_indet, _S_empty },
64 { _S_false, _S_indet, _S_indet, _S_empty },
65 { _S_empty, _S_empty, _S_empty, _S_empty } };
67 bool_set::_Bool_set_val
68 bool_set::_S_eq[4][4] =
69 { { _S_true_, _S_false, _S_indet, _S_empty },
70 { _S_false, _S_true_, _S_indet, _S_empty },
71 { _S_indet, _S_indet, _S_indet, _S_empty },
72 { _S_empty, _S_empty, _S_empty, _S_empty } };
75_GLIBCXX_END_NAMESPACE_VERSION
ISO C++ entities toplevel namespace is std.
Namespace for non-standard "TR2" extensions.