Copy Data Member Function

Copies the source to the destination, using C++ static_cast to convert values if the source type and destination type are different.

Prototype

int32 Copy( TypedIterator first, TypedIterator last, Uint32Iterator dest )

Parameters

Parameter Type Parameter Name Documentation
<TypedIterator>firstAn iterator at the start of the range to be copied.
<TypedIterator>lastAn iterator at the end of the range to be copied.
<Uint32Iterator>destAn iterator at the start of the destination. Performs the smallest copy possible. Only as much data will be copied as is available in the source and the destination.

Examples

Copy Text To Clipboard

None published. Please look for an example in the Scenome Scripting Language code base.