Home
last modified time | relevance | path

Searched defs:is_constructible (Results 1 – 4 of 4) sorted by relevance

/third_party/json/include/nlohmann/detail/meta/
Dtype_traits.hpp222 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/
Djson.hpp3618 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/
Djson_v3_10_5.hpp3523 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/
Dstylo.hpp3899 struct is_constructible struct