[#BloombergLP-bsls-Util-forward-0ac] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::xref:BloombergLP/bsls/Util.adoc[Util]::forward :relfileprefix: ../../../ :mrdocs: Forward the specified `t` as a reference of deduced `TYPE`. == Synopsis Declared in `<bsls_util.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> constexpr static TYPE&& forward(Util_RemoveReference<TYPE>::type& t) noexcept; ---- == Description Return a reference to the specified `t` of deduced `TYPE`. If `TYPE` is an lvalue‐reference type, then the result will be an lvalue‐reference; otherwise an rvalue‐reference. == Return Value reference to `t` of deduced `TYPE` == Parameters [cols="1,4"] |=== | Name| Description | *t* | object to forward |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#