Constructors
Declared in <bdlb_nullablevalueref.h>
Create a nullable wrapper that refers to the same target as original.
NullableValueRef(NullableValueRef const& original);
» more...
Create a nullable wrapper that refers to opt.
NullableValueRef(NullableAllocatedValue<TYPE>& opt);
» more...
Create a nullable wrapper that refers to opt.
NullableValueRef(bsl::optional<TYPE>& opt);
» more...
| Name | Description |
|---|---|
| original | wrapper whose target is shared |
| opt | nullable object to wrap |