Object | +--Array
| SUMMARY: Constructor | Properties | Methods | DETAIL: Constructor | Properties | Methods |
| Methods Summary | |
boolean
|
contains(<Object> val)
check if an array passed as argument contains a specific value (start from end of array) |
int
|
indexOf(<Object> val)
Return the first index position of a value contained in an array, or -1 if it isn't contained. |
int
|
lastIndexOf(<Object> val)
return the last index position of a value contained in an array, or -1 if it isn't contained. |
<static> Array
|
intersection()
Retrieve the intersection set of a bunch of arrays |
<static> Array
|
union()
Retrieve the union set of a bunch of arrays |
| Method Detail |
boolean contains(<Object> val)
val - the value to check
int indexOf(<Object> val)
val - the value to check
int lastIndexOf(<Object> val)
val - the value to check
<static> Array intersection()
array1 - ,... the arrays to intersect
<static> Array union()
array1 - ,... the arrays to unify
| SUMMARY: Constructor | Properties | Methods | DETAIL: Constructor | Properties | Methods |