Searched defs:ValueBase (Results 1 – 1 of 1) sorted by relevance
133 struct ValueBase { struct135 explicit constexpr ValueBase(int x) : value(x) {} in ValueBase() argument137 constexpr ValueBase(int x) : value(x) {} in ValueBase() argument139 explicit constexpr ValueBase(int, int y) : value(y) {} in ValueBase() argument141 constexpr ValueBase(int, int y) : value(y) {} in ValueBase() function143 …explicit constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.… in ValueBase() function145 …constexpr ValueBase(std::initializer_list<int>& il, int = 0) : value(static_cast<int>(il.size())) … in ValueBase() argument146 TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept { in operator =()151 int value;155 constexpr static int check_value(int const& val) { in check_value()[all …]