Searched defs:is_constructible (Results 1 – 4 of 4) sorted by relevance
/third_party/json/include/nlohmann/detail/meta/ |
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
|
/third_party/json/single_include/nlohmann/ |
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<const std::tuple<Ts...>> : is_default_constructible<const std::tuple<Ts...>… struct
|
/third_party/json/tests/abi/include/nlohmann/ |
D | json_v3_10_5.hpp | 3523 struct is_constructible : std::is_constructible<T, Args...> {}; struct 3526 struct is_constructible<std::pair<T1, T2>> : is_default_constructible<std::pair<T1, T2>> {}; struct 3529 struct is_constructible<const std::pair<T1, T2>> : is_default_constructible<const std::pair<T1, T2>… struct 3532 struct is_constructible<std::tuple<Ts...>> : is_default_constructible<std::tuple<Ts...>> {}; struct 3535 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
|