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