vbantxt/util.go

11 lines
149 B
Go
Raw Permalink Normal View History

package vbantxt
func indexOf[T comparable](collection []T, e T) int {
for i, x := range collection {
if x == e {
return i
}
}
return -1
}