[#BloombergLP-bsltf-CopyMoveState-0e-isOriginal] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsltf.adoc[bsltf]::xref:BloombergLP/bsltf/CopyMoveState-0e.adoc[CopyMoveState]::isOriginal :relfileprefix: ../../../ :mrdocs: Return whether `v` is an original value, not copied or moved into. == Synopsis Declared in `<bsltf_copymovestate.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> static bool isOriginal(TYPE const& v); ---- == Description Return `true` if, for the specified `v`, `CopyMoveState::get(v)` does not include any of the `e_COPIED_INTO`, `e_MOVED_INTO`, or `e_UNKNOWN` bits; otherwise return `false`. Note that this function's return value is unaffected by the `e_MOVED_FROM` bit. == Return Value `true` if `v` is an original value, else `false` == Parameters [cols="1,4"] |=== | Name| Description | *v* | object whose copy/move state is tested |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#