Home
last modified time | relevance | path

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

/petsc/include/petsc/private/cpp/
H A Dutility.hpp123 class compressed_pair_impl<T, U, 0> : std::pair<T, U> { class
140 class compressed_pair_impl<T, U, 1> : T { class
150compressed_pair_impl(first_type x, second_type y) : base_type(std::move_if_noexcept(x)), second_(s… in compressed_pair_impl() function in Petsc::util::detail::compressed_pair_impl
152 compressed_pair_impl(second_type x) : second_(std::move_if_noexcept(x)) { } in compressed_pair_impl() function in Petsc::util::detail::compressed_pair_impl
166 class compressed_pair_impl<T, U, 2> : U { class
176compressed_pair_impl(first_type x, second_type y) : base_type(std::move_if_noexcept(y)), first_(st… in compressed_pair_impl() function in Petsc::util::detail::compressed_pair_impl
178 compressed_pair_impl(first_type x) : first_(std::move_if_noexcept(x)) { } in compressed_pair_impl() function in Petsc::util::detail::compressed_pair_impl
192 class compressed_pair_impl<T, U, 3> : T, U { class
205compressed_pair_impl(first_type x, second_type y) : first_type(std::move_if_noexcept(x)), second_t… in compressed_pair_impl() function in Petsc::util::detail::compressed_pair_impl