mirror of
https://github.com/golang/go
synced 2024-11-05 21:36:12 -07:00
11 lines
161 B
Go
11 lines
161 B
Go
|
package x
|
||
|
|
||
|
func indexByte(xs []byte, b byte) int { // ERROR "indexByte xs does not escape"
|
||
|
for i, x := range xs {
|
||
|
if x == b {
|
||
|
return i
|
||
|
}
|
||
|
}
|
||
|
return -1
|
||
|
}
|