Skip to end of banner
Go to start of banner

arrayFind

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Availability

This routine is available starting katl-commons 2.5.7.

Syntax

arrayFind(arrayName, element)

Description

Finds an element inside the collection and returns its index. If the element is not found, it returns -1.

Alias

arrayFind(arrayName, element)

Parameters

Parameter name

Type

Required

Description

arrayName

array

Yes

The array.

elementtype of array elementYesThe element to find in the array.

Return Type

number


Related routine

Related routine: arrayFindBinary() - but your array must be sorted prior to that. This routine is for general use. Binary search should be used only for sorted arrays.

Example

return arrayFind(usersInGroups({"jira-users"}), "admin");

The result of the routine is the index of the searched element in the array returned by usersInGroups.

If the array contains duplicates, the routine returns the index of the first occurrence of the searched element.

 

See also

  • No labels