[#BloombergLP-bsls-Util-forward-0a6] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::xref:BloombergLP/bsls/Util.adoc[Util]::forward :relfileprefix: ../../../ :mrdocs: `forward` overloads == Synopses Declared in `<bsls_util.h>` Forward the specified `t` as a reference of deduced `TYPE`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> constexpr static TYPE&& xref:BloombergLP/bsls/Util/forward-0ac.adoc[forward](Util_RemoveReference<TYPE>::type& t) noexcept; ---- [.small]#xref:BloombergLP/bsls/Util/forward-0ac.adoc[_» more..._]# Forward the specified `t` as a reference of non‐deduced `TYPE`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> constexpr static TYPE&& xref:BloombergLP/bsls/Util/forward-09.adoc[forward](Util_RemoveReference<TYPE>::type&& t) noexcept; ---- [.small]#xref:BloombergLP/bsls/Util/forward-09.adoc[_» more..._]# == Return Value * reference to `t` of deduced `TYPE` * reference to `t` of non‐deduced `TYPE` == Parameters [cols="1,4"] |=== | Name| Description | *t* | object to forward |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#