Searched defs:is_constructible (Results 1 - 2 of 2) sorted by relevance
| /third_party/json/include/nlohmann/detail/meta/ |
| H A D | type_traits.hpp | 222 struct is_constructible : std::is_constructible<T, Args...> {}; struct 225 struct is_constructible<std::pair<T1, T2>> : is_default_constructible<std::pair<T1, T2>> {}; struct 228 struct is_constructible<const std::pair<T1, T2>> : is_default_constructible<const std::pair<T1, T2>> {}; struct 231 struct is_constructible<std::tuple<Ts...>> : is_default_constructible<std::tuple<Ts...>> {}; struct 234 struct is_constructible<const std::tuple<Ts...>> : is_default_constructible<const std::tuple<Ts...>> {}; struct [all...] |
| /third_party/json/single_include/nlohmann/ |
| H A D | json.hpp | 3618 struct is_constructible : std::is_constructible<T, Args...> {}; struct 3621 struct is_constructible<std::pair<T1, T2>> : is_default_constructible<std::pair<T1, T2>> {}; struct 3624 struct is_constructible<const std::pair<T1, T2>> : is_default_constructible<const std::pair<T1, T2>> {}; struct 3627 struct is_constructible<std::tuple<Ts...>> : is_default_constructible<std::tuple<Ts...>> {}; struct 3630 struct is_constructible<cons struct [all...] |
Completed in 9 milliseconds