MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / Option

Method Option

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

Source from the content-addressed store, hash-verified

3470 class Option {
3471 public:
3472 Option() : nullableValue( nullptr ) {}
3473 Option( T const& _value )
3474 : nullableValue( new( storage ) T( _value ) )
3475 {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected