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

Function dereference

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

reference_content lacks an implicit conversion to T&, so the following is needed to obtain a proper reference.

Source from the content-addressed store, hash-verified

469
470 // reference_content<T> lacks an implicit conversion to T&, so the following is needed to obtain a proper reference.
471 reference_const_type dereference( internal_type const* p, is_not_reference_tag ) const { return *p ; }
472 reference_type dereference( internal_type* p, is_not_reference_tag ) { return *p ; }
473 reference_const_type dereference( internal_type const* p, is_reference_tag ) const { return p->get() ; }
474 reference_type dereference( internal_type* p, is_reference_tag ) { return p->get() ; }

Callers 2

get_implFunction · 0.85
operator*Function · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected