func reflect.DeepEqual
12 uses
reflect (current package)
deepequal.go#L209: func DeepEqual(x, y interface{}) bool {
encoding/asn1
marshal.go#L596: if reflect.DeepEqual(v.Interface(), defaultValue.Interface()) {
marshal.go#L605: if reflect.DeepEqual(v.Interface(), reflect.Zero(v.Type()).Interface()) {
github.com/aws/aws-sdk-go/aws/awsutil
equal.go#L26: return reflect.DeepEqual(ra.Interface(), rb.Interface())
github.com/jmespath/go-jmespath
util.go#L51: return reflect.DeepEqual(left, right)
go.opencensus.io/stats/view
view.go#L67: return reflect.DeepEqual(v.Aggregation, other.Aggregation) &&
view.go#L198: return reflect.DeepEqual(r.Tags, other.Tags) && r.Data.equal(other.Data)
golang.org/x/pkgsite/internal/godoc/dochtml
template.go#L49: if reflect.DeepEqual(v.Interface(), vz.Interface()) {
golang.org/x/pkgsite/internal/postgres
licenses.go#L153: if !reflect.DeepEqual(gotColumns, wantColumns) {
google.golang.org/grpc
clientconn.go#L850: if reflect.DeepEqual(ac.curAddr, a) {
service_config.go#L453: return reflect.DeepEqual(aa, bb)
google.golang.org/protobuf/proto
equal.go#L153: return reflect.DeepEqual(mx, my)
 |
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. |