Invoke the specified manipulator on the referred non-null value.
Declared in <bdlar_nullablevalueref.h>
template<class t_MANIPULATOR>
int
manipulateValue(t_MANIPULATOR& manipulator) const;
The supplied manipulator must be a callable type that can be called as if it had the following signature: ` int manipulator(VALUE *refOrValue); ` Return the value from the invocation of manipulator. The behavior is undefined if the referred object is null.
value from the invocation of manipulator
| Name | Description |
|---|---|
| manipulator | callable invoked on the non-null value |