[#absl-implicit_cast-09] = xref:absl.adoc[absl]::implicit_cast :relfileprefix: ../ :mrdocs: Overload of `implicit_cast()` for reference types, which participates in overload resolution when `To` is a reference type. == Synopsis Declared in `<absl/base/casts.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename To> constexpr To implicit_cast(To to) requires std::is_reference_v<To>; ---- == Return Value The value of `to`, converted to `To`. == Parameters [cols="1,4"] |=== | Name| Description | *to* | The value to convert to `To`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#