vbantxt/util.go

12 lines
201 B
Go
Raw Permalink Normal View History

2022-11-05 18:58:36 +00:00
package main
// indexOf returns the index of an element in an array
func indexOf[T comparable](collection []T, e T) int {
for i, x := range collection {
if x == e {
return i
}
}
return -1
}