MCPcopy Create free account
hub / github.com/deweylab/RSEM / get_ptr

Function get_ptr

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

Returns a pointer to the value if this is initialized, otherwise, returns NULL. No-throw

Source from the content-addressed store, hash-verified

335 // returns NULL.
336 // No-throw
337 pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; }
338 pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; }
339
340 bool is_initialized() const { return m_initialized ; }

Callers

nothing calls this directly

Calls 1

get_ptr_implFunction · 0.85

Tested by

no test coverage detected