MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / operator->

Function operator->

extern/boost/boost/optional/optional.hpp:1279–1279  ·  view source on GitHub ↗

Returns a pointer to the value if this is initialized, otherwise, the behaviour is UNDEFINED No-throw

Source from the content-addressed store, hash-verified

1277 // the behaviour is UNDEFINED
1278 // No-throw
1279 pointer_const_type operator->() const { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; }
1280 pointer_type operator->() { BOOST_ASSERT(this->is_initialized()) ; return this->get_ptr_impl() ; }
1281
1282 // Returns a reference to the value if this is initialized, otherwise,

Callers 4

operator ->Method · 0.50
operator ->Method · 0.50
operator ->Method · 0.50

Calls 2

is_initializedMethod · 0.45
get_ptr_implMethod · 0.45

Tested by

no test coverage detected