Home
last modified time | relevance | path

Searched defs:integral_constant (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dintegral_constant.hpp52 struct integral_constant struct
54 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> struct
79 typedef mpl::integral_c_tag tag;
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/move/detail/
H A Dmeta_utils_core.hpp88 struct integral_constant struct
90 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 ()()