Interface ArrayUtil
access this type via: data.ArrayUtil (provides, requires or uses)
Inspect and transform arrays.
Functions
Data[] removeCell(Data array[], TypeField field, Data val, optional bool multi)
Data[] removeIndex(Data array[], int index[])
Object[] removeObjectCell(Object array[], Object val, optional bool multi)
Object[] removeObjectIndex(Object array[], int index[])
int[] removeIntCell(int array[], int val, optional bool multi)
int[] removeIntIndex(int array[], int index[])
dec[] removeDecCell(dec array[], dec val, optional bool multi)
dec[] removeDecIndex(dec array[], int index[])
Data[] removeCell(Data array[], TypeField field, Data val, optional bool multi)
Remove array cell(s) by matching against a field.
Data[] removeIndex(Data array[], int index[])
Remove array cell(s) by index.
Object[] removeObjectCell(Object array[], Object val, optional bool multi)
Remove array cell(s) by equality check.
Object[] removeObjectIndex(Object array[], int index[])
Remove array cell(s) by index.
int[] removeIntCell(int array[], int val, optional bool multi)
Remove array cell(s) by equality check.
int[] removeIntIndex(int array[], int index[])
Remove array cell(s) by index.
dec[] removeDecCell(dec array[], dec val, optional bool multi)
Remove array cell(s) by equality check.
dec[] removeDecIndex(dec array[], int index[])
Remove array cell(s) by index.