func internal/bytealg.Equal
9 uses
internal/bytealg (current package)
equal_generic.go#L14: func Equal(a, b []byte) bool {
internal/runtime/cgroup
cgroup.go#L425: if len(p) < i || !bytealg.Equal(prefix, p[:i]) {
net
ip.go#L276: if len(mask) == IPv4len && len(ip) == IPv6len && bytealg.Equal(ip[:12], v4InV6Prefix) {
ip.go#L393: return bytealg.Equal(ip, x)
ip.go#L396: return bytealg.Equal(x[0:12], v4InV6Prefix) && bytealg.Equal(ip, x[12:])
ip.go#L399: return bytealg.Equal(ip[0:12], v4InV6Prefix) && bytealg.Equal(ip[12:], x)
reflect
deepequal.go#L110: return bytealg.Equal(v1.Bytes(), v2.Bytes())
![]() |
The pages are generated with Golds v0.8.4. (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. |