[#bsl-Pair_Second-01-2constructor-04] = xref:bsl.adoc[bsl]::xref:bsl/Pair_Second-01.adoc[Pair_Second<TYPE&>]::Pair_Second :relfileprefix: ../../ :mrdocs: Construct the `second` member from the single element of `arg`. == Synopsis Declared in `<bslstl_pair.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ARG> constexpr Pair_Second( std::tuple<ARG>&& arg, xref:BloombergLP/bslstl/Pair_IndexSequence.adoc[BloombergLP::bslstl::Pair_IndexSequence<0U>] indices); ---- == Description Construct the `second` member of a `pair`, forwarding in order the elements in the specified `arg` tuple to the corresponding constructor of (template parameter) `TYPE`. The length of the tuple is equal to the length of the index sequence passed to the constructor via the `Pair_IndexSequence` object. == Parameters [cols="1,4"] |=== | Name| Description | *arg* | single‐element tuple forwarded to the constructor of `TYPE` | *indices* | index sequence enumerating the elements of `arg` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#