Searched defs:integral_constant (Results 1 – 2 of 2) sorted by relevance
52 struct integral_constant struct54 typedef mpl::integral_c_tag tag;55 typedef T value_type;56 typedef integral_constant<T, val> type;57 static const T value = val;63 static U& dereference(U* p) { return *p; } in dereference()65 operator const mpl::integral_c<T, val>& ()const in operator const mpl::integral_c<T,val>&()70 BOOST_CONSTEXPR operator T()const { return val; } in operator T()77 struct integral_constant<bool, val> struct79 typedef mpl::integral_c_tag tag;[all …]
88 struct integral_constant struct90 static const T value = v;91 typedef T value_type;92 typedef integral_constant<T, v> type;94 operator T() const { return value; } in operator T()95 T operator()() const { return value; } in operator ()()