Search 1D Array

Searches for an element in a 1D array starting at start index. You do not need to sort the array before calling this function, because the search is linear. The connector pane displays the default data types for this polymorphic function.

1D array can be a 1D array of any type.
element is the value to search for in the input array. The representation of element should match the representation of 1D array.
start index must be numeric. The default is 0.
index of element is the index where element is found. If the function does not find element, index of element is –1.