BloombergLP::bslstl::Optional_Base::operator->

Member access operators

Synopses

Declared in <bslstl_optional.h>

Return a pointer providing modifiable access to the underlying t_TYPE object. The behavior is undefined if the Optional_Base object is disengaged.

t_TYPE*
operator->();
» more...

Return a pointer providing non-modifiable access to the underlying t_TYPE object. The behavior is undefined if the Optional_Base object is disengaged.

t_TYPE const*
operator->() const;
» more...