[#BloombergLP-bdlar-NullableValueRef-manipulateValue] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlar.adoc[bdlar]::xref:BloombergLP/bdlar/NullableValueRef.adoc[NullableValueRef]::manipulateValue :relfileprefix: ../../../ :mrdocs: Invoke the specified `manipulator` on the referred non‐null value. == Synopsis Declared in `<bdlar_nullablevalueref.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_MANIPULATOR> int manipulateValue(t_MANIPULATOR& manipulator) const; ---- == Description 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. == Return Value value from the invocation of `manipulator` == Parameters [cols="1,4"] |=== | Name| Description | *manipulator* | callable invoked on the non‐null value |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#