getPairElement overloads
Declared in <bslstl_pair.h>
Return a reference providing modifiable access to the first element of the specified p.
static
T1&
getPairElement(bsl::pair<T1, T2>& p) noexcept;
» more...
Return a reference providing non-modifiable access to the first element of the specified p.
static
T1 const&
getPairElement(bsl::pair<T1, T2> const& p) noexcept;
» more...
Return a rvalue reference providing modifiable access to the first element of the specified p
static
T1&&
getPairElement(bsl::pair<T1, T2>&& p) noexcept;
» more...
Return a rvalue reference providing non-modifiable access to the first element of the specified p
static
T1 const&&
getPairElement(bsl::pair<T1, T2> const&& p) noexcept;
» more...