func internal/bytealg.Equal
11 uses
internal/bytealg (current package)
bytealg.go#L112: if h == hashsep && Equal(s[:n], sep) {
bytealg.go#L120: if h == hashsep && Equal(s[i-n:i], sep) {
equal_generic.go#L14: func Equal(a, b []byte) bool {
net
ip.go#L275: if len(mask) == IPv4len && len(ip) == IPv6len && bytealg.Equal(ip[:12], v4InV6Prefix) {
ip.go#L361: return bytealg.Equal(ip, x)
ip.go#L364: return bytealg.Equal(x[0:12], v4InV6Prefix) && bytealg.Equal(ip, x[12:])
ip.go#L367: return bytealg.Equal(ip[0:12], v4InV6Prefix) && bytealg.Equal(ip[12:], x)
sockopt_posix.go#L98: if bytealg.Equal(mreq.Multiaddr[:], IPv4zero.To4()) {
reflect
deepequal.go#L110: return bytealg.Equal(v1.Bytes(), v2.Bytes())
|
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |