Constructors

Synopses

Declared in <bdlar_nullablevalueref.h>

Create NullableValueRef object. The behaviour is undefined unless objectAddress and vtable point to the valid objects.

NullableValueRef(
    void* objectAddress,
    NullableValueVtable const* vtable);

Create NullableValueRef object that type erases the supplied nullable object.

template<class t_NULLABLE>
explicit
NullableValueRef(
    t_NULLABLE& nullable,
    void* = 0)
requires IsNullable<t_NULLABLE>::value;

Created with MrDocs