Copies the source to the destination, using C++ static_cast to convert values if the source type and destination type are different.
int32 Copy( TypedIterator first, TypedIterator last, Float64Iterator dest )
| Parameter Type | Parameter Name | Documentation |
|---|---|---|
| <TypedIterator> | first | An iterator at the start of the range to be copied. |
| <TypedIterator> | last | An iterator at the end of the range to be copied. |
| <Float64Iterator> | dest | An 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. |
None published. Please look for an example in the Simdify Scripting Language code base.