Search for the given item in the list. If any values in the list are equal, this will return its index. Otherwise it will return 0.
= list(10, 20, 30, 20)
// Will return the first instance of 20
world.log << L.Find(20) // 2
Search for the given item in the list. If any values in the list are equal, this will return its index. Otherwise it will return 0.
= list(10, 20, 30, 20)
// Will return the first instance of 20
world.log << L.Find(20) // 2