public class test { T[] data; public int index_of(T item) { int idx = 0; foreach(T it in this.data) if (item == it) return idx; return -1; } }