Return a reference to the underlying object
, without checking.
Synopsis
object&
get_object() & noexcept; (1)
object&&
get_object() && noexcept; (2)
object const&
get_object() const& noexcept; (3)
Description
This is the fastest way to access the underlying representation when the kind is known in advance.
Preconditions
Complexity
Exception Safety