MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / pair

Method pair

libCacheSim/dataStructure/robin_hood.h:589–591  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

587 typename = typename std::enable_if<std::is_default_constructible<U1>::value &&
588 std::is_default_constructible<U2>::value>::type>
589 constexpr pair() noexcept(noexcept(U1()) && noexcept(U2()))
590 : first()
591 , second() {}
592
593 // pair constructors are explicit so we don't accidentally call this ctor when we don't have to.
594 explicit constexpr pair(std::pair<T1, T2> const& o) noexcept(

Callers

nothing calls this directly

Calls 2

noexceptFunction · 0.85
pairClass · 0.85

Tested by

no test coverage detected