func internal/bytealg.Equal
10 uses
internal/bytealg (current package)
bytealg.go#L111: if h == hashsep && Equal(s[:n], sep) {
bytealg.go#L119: if h == hashsep && Equal(s[i-n:i], sep) {
equal_generic.go#L14: func Equal(a, b []byte) bool {
net
ip.go#L252: if len(mask) == IPv4len && len(ip) == IPv6len && bytealg.Equal(ip[:12], v4InV6Prefix) {
ip.go#L412: return bytealg.Equal(ip, x)
ip.go#L415: return bytealg.Equal(x[0:12], v4InV6Prefix) && bytealg.Equal(ip, x[12:])
ip.go#L418: return bytealg.Equal(ip[0:12], v4InV6Prefix) && bytealg.Equal(ip[12:], x)
sockopt_posix.go#L98: if bytealg.Equal(mreq.Multiaddr[:], IPv4zero.To4()) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |