Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
golang / usr / local / go / test / linkname.dir / linkname1.go
Size: Mime:
package x

func indexByte(xs []byte, b byte) int { // ERROR "xs does not escape" "can inline indexByte"
	for i, x := range xs {
		if x == b {
			return i
		}
	}
	return -1
}