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

Method operator->

unittests/catch.hpp:3506–3506  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3504 T& operator*() { return *nullableValue; }
3505 T const& operator*() const { return *nullableValue; }
3506 T* operator->() { return nullableValue; }
3507 const T* operator->() const { return nullableValue; }
3508
3509 T valueOr( T const& defaultValue ) const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected