CalcIt Commands

ARRBINADD(Arr, ArrToAdd, NumericSort=false, Unique=false)

Inserts the contents of ArrExpr in the correct position in the sorted array Arr.

  • Arr. Array where to add a new value
  • ArrToAdd. Array  with Values to add.
  • NumericSort. The way Arr is sorted. Numerically or Alphabetically. Optional. If omitted the alphabetical order is assumed.
  • Unique. Optional. If TRUE then only values not already in Arr will be added.

Returns the position where the last item is added.

Go Back