Searched defs:is_constructible (Results 1 – 3 of 3) sorted by relevance
| /third_party/json/include/nlohmann/detail/meta/ |
| D | type_traits.hpp | 187 struct is_constructible : std::is_constructible<T, Args...> {}; struct 190 struct is_constructible<std::pair<T1, T2>> : is_default_constructible<std::pair<T1, T2>> {}; struct 193 struct is_constructible<const std::pair<T1, T2>> : is_default_constructible<const std::pair<T1, T2>… struct 196 struct is_constructible<std::tuple<Ts...>> : is_default_constructible<std::tuple<Ts...>> {}; struct 199 struct is_constructible<const std::tuple<Ts...>> : is_default_constructible<const std::tuple<Ts...>… struct
|
| /third_party/json/single_include/nlohmann/ |
| D | json.hpp | 3596 struct is_constructible : std::is_constructible<T, Args...> {}; struct 3599 struct is_constructible<std::pair<T1, T2>> : is_default_constructible<std::pair<T1, T2>> {}; struct 3602 struct is_constructible<const std::pair<T1, T2>> : is_default_constructible<const std::pair<T1, T2>… struct 3605 struct is_constructible<std::tuple<Ts...>> : is_default_constructible<std::tuple<Ts...>> {}; struct 3608 struct is_constructible<const std::tuple<Ts...>> : is_default_constructible<const std::tuple<Ts...>… struct
|
| /third_party/rust/crates/bindgen/bindgen-tests/tests/ |
| D | stylo.hpp | 3899 struct is_constructible struct
|