func internal/bytealg.Equal
9 uses
internal/bytealg (current package)
equal_generic.go#L14: func Equal(a, b []byte) bool {
net
ip.go#L276: if len(mask) == IPv4len && len(ip) == IPv6len && bytealg.Equal(ip[:12], v4InV6Prefix) {
ip.go#L362: return bytealg.Equal(ip, x)
ip.go#L365: return bytealg.Equal(x[0:12], v4InV6Prefix) && bytealg.Equal(ip, x[12:])
ip.go#L368: return bytealg.Equal(ip[0:12], v4InV6Prefix) && bytealg.Equal(ip[12:], x)
sockopt_posix.go#L69: 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.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |