copy
..Root.Object.copy
Makes copy of this object (signatures, children, internal value).
- Return value: new object (e.g
String
or ArrayIterator
)
Child of:
Object
Signatures:
NativeCallable
, Callable
Example:
auto a.=(5);
log(a.copy().++());
log(a)
Expected output: