The elemIndex function returns the index of the first element
in the given list which is equal (by ==) to the query element,
or Nothing if there is no such element. For the result to be
Nothing, the list must be finite.
The elemIndex function returns the index of the first element
in the given list which is equal (by ==) to the query element,
or Nothing if there is no such element.
The elemIndex function returns the index of the first element
in the given list which is equal (by ==) to the query element,
or Nothing if there is no such element. For the result to be
Nothing, the list must be finite.
O(n) Yield Just the index of the first occurrence of the
given element or Nothing if the vector does not contain the
element. This is a specialised version of findIndex.