Searched defs:is_constructible (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/variant/ |
| H A D | recursive_wrapper_fwd.hpp | 51 template <class T> struct is_constructible<recursive_wrapper<T>, T> … struct 52 template <class T> struct is_constructible<recursive_wrapper<T>, const T> … struct 53 template <class T> struct is_constructible<recursive_wrapper<T>, T&> … struct 54 template <class T> struct is_constructible<recursive_wrapper<T>, const T&> … struct 55 template <class T> struct is_constructible<recursive_wrapper<T>, recursive_wrapper<T> > … struct 56 template <class T> struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<T… struct 57 template <class T> struct is_constructible<recursive_wrapper<T>, recursive_wrapper<T>& > … struct 58 template <class T> struct is_constructible<recursive_wrapper<T>, const recursive_wrapper<T… struct 60 template <class T, class U> struct is_constructible<recursive_wrapper<T>, U > … struct 61 template <class T, class U> struct is_constructible<recursive_wrapper<T>, const U > … struct [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/ |
| H A D | is_constructible.hpp | 46 …template <class T, class ...Args> struct is_constructible : public integral_constant<bool, sizeof(… struct 47 …template <class T, class Arg> struct is_constructible<T, Arg> : public integral_constant<bool, is_… struct 48 …template <class Ref, class Arg> struct is_constructible<Ref&, Arg> : public integral_constant<bool… struct 49 …template <class Ref, class Arg> struct is_constructible<Ref&&, Arg> : public integral_constant<boo… struct 51 template <> struct is_constructible<void> : public false_type{}; struct 52 template <> struct is_constructible<void const> : public false_type{}; struct 53 template <> struct is_constructible<void const volatile> : public false_type{}; struct 54 template <> struct is_constructible<void volatile> : public false_type{}; struct 56 template <class T> struct is_constructible<T> : public is_default_constructible<T>{}; struct
|