Lists
Get Index
4min
overview the get index action allows searching in a list for a given object if the object is found within the list, it returns the index of the object if the object is not found, it returns 1 parameters inputs input list ( list\<object> ) the list in which the search will be performed input object to be found ( object ) the object that is being searched for within the list outputs result ( integer ) the index of the found object in the list, or 1 if the object is not found important notes it's important to ensure that the input list contains objects of the same type as the input object being searched for if the input list contains duplicate objects, this action will return the index of the first occurrence found in the list