- Delta
- Reserve
- Resize
- Shutdown
- Add
- AddArray
- AddArray
- Insert
- InsertArray
- InsertArray
- AssignArray
- AssignArray
- Update
- Shift
- Delete
- DeleteRange
- At
- CompareArray
- CompareArray
- InsertSort
- Search
- SearchGreat
- SearchLess
- SearchGreatOrEqual
- SearchLessOrEqual
- SearchFirst
- SearchLast
- SearchLinear
- Save
- Load
- Type
InsertArray
Inserts elements of one array from the specified position of another array.
bool InsertArray(
|
Parameters
src[]
[in] Reference to an array used as a source of elements to insert
pos
[in] Position in the array to insert
Return Value
true - successful, false - cannot insert items.
Example:
//--- example for CArrayFloat::InsertArray(const float &[],int)
|