file
Pair.h
Namespaces
- namespace Death
- Shared root namespace.
- namespace Death::Containers
- Container implementations.
Classes
-
template<class, class>class Death::Containers::Pair
- Pair of values.
Functions
-
template<class F, class S>auto pair(F&& first, S&& second) -> Pair<typename std::
decay<F>::type, typename std:: decay<S>::type> constexpr - Make a pair.
-
template<class T>auto pair(T&& other) -> decltype(Implementation::DeducedPairConverter<typename std::
decay<T>::type>::from(Death:: forward<T>(other))) - Make a pair from external representation.