bytes package implements Index <https://golang.org/pkg/bytes/#Index> function (func Index(s, sep []byte) int) that returns the index of the first instance of sep in s, or -1 if sep is not present in s. Do you think it's possible to do the same thing with uint32 slice (func Index(s, sep []uint32) int)?
eg: https://play.golang.org/p/kSu3lqsbRH buffer := "83f9eed5fb46f700c1caca" searchByte := []byte{0x65, 0x65, 0x64, 0x35, 0x66, 0x62, 0x34, 0x36, 0x66, 0x37} // eed5fb46f7 if bytes.Index([]byte(buffer), searchByte) != -1 { fmt.Println("OK") } -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.