miva_array_merge()

 
Copies "scount" elements from "source" into "dest", starting with "sstart" and inserting the elements at "dpos". Existing elements in "dest" past "dpos" are pushed forward by "scount" elements.
Syntax
miva_array_merge( source var, sstart, scount, dest var, dpos )
Returns the number of elements in the "dest" array after the merge.
  • source = The source array from which records will be copied
  • sstart = The source starting index
  • scount = The number of source records to copy.
  • dest = The destination array that will receive the copied records.
  • dpos = The starting index within the destination array. Existing elements in "dest" past "dpos" are pushed forward by "scount" elements.
User Annotations: miva_array_merge