[#bsl-Pair_Second-01] = xref:bsl.adoc[bsl]::xref:bsl/Pair_Second-05e.adoc[Pair_Second]<TYPE&> :relfileprefix: ../ :mrdocs: Component‐private base holding a pair's `second` member by lvalue reference. == Synopsis Declared in `<bslstl_pair.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> struct xref:bsl/Pair_Second-05e.adoc[Pair_Second]<TYPE&>; ---- == Description This component‐private `class` holds the `second` data member of a `pair` when that member is an lvalue‐reference. Note that the C++ Standard defines the assignment operator to assign through the reference in this case, where the implicitly declared assignment operator would be deleted. == Protected Member Functions [cols="1,4"] |=== | Name| Description | xref:bsl/Pair_Second-01/2constructor-07.adoc[`Pair_Second`] [.small]#[constructor]# | Constructors | xref:bsl/Pair_Second-01/operator_assign.adoc[`operator=`] | Assign through the `second` reference from `rhs.second`. |=== == Protected Data Members [cols="1,4"] |=== | Name| Description | xref:bsl/Pair_Second-01/second.adoc[`second`] | The `second` element of the pair, held by lvalue reference. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#