How to find index of list item in Swift?
I am trying to find an item index
by searching a list
. Does anybody know how to do that?
I see there is list.StartIndex
and list.EndIndex
but I want something like python's list.index("text")
.
I am trying to find an item index
by searching a list
. Does anybody know how to do that?
I see there is list.StartIndex
and list.EndIndex
but I want something like python's list.index("text")
.