mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
14 lines
276 B
Go
14 lines
276 B
Go
|
package y
|
||
|
|
||
|
import _ "unsafe"
|
||
|
|
||
|
//go:linkname byteIndex linkname1.indexByte
|
||
|
func byteIndex(xs []byte, b byte) int
|
||
|
|
||
|
func ContainsSlash(data []byte) bool { // ERROR "leaking param: data" "can inline ContainsSlash"
|
||
|
if byteIndex(data, '/') != -1 {
|
||
|
return true
|
||
|
}
|
||
|
return false
|
||
|
}
|