You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
151 B
11 lines
151 B
4 months ago
|
package x
|
||
|
|
||
|
func indexByte(xs []byte, b byte) int { // ERROR "xs does not escape"
|
||
|
for i, x := range xs {
|
||
|
if x == b {
|
||
|
return i
|
||
|
}
|
||
|
}
|
||
|
return -1
|
||
|
}
|