Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(44)

Delta Between Two Patch Sets: src/pkg/reflect/deepequal.go

Issue 7906043: code review 7906043: reflect: implement method values (Closed)
Left Patch Set: diff -r 03e65dd0dc77 https://go.googlecode.com/hg/ Created 12 years ago
Right Patch Set: diff -r 322613c55f76 https://code.google.com/p/go/ Created 12 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/reflect/asm_arm.s ('k') | src/pkg/reflect/makefunc.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // Deep equality test via reflection 5 // Deep equality test via reflection
6 6
7 package reflect 7 package reflect
8 8
9 // During deepValueEqual, must keep track of checks that are 9 // During deepValueEqual, must keep track of checks that are
10 // in progress. The comparison algorithm assumes that all 10 // in progress. The comparison algorithm assumes that all
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 case Func: 111 case Func:
112 if v1.IsNil() && v2.IsNil() { 112 if v1.IsNil() && v2.IsNil() {
113 return true 113 return true
114 } 114 }
115 // Can't do better than this: 115 // Can't do better than this:
116 return false 116 return false
117 default: 117 default:
118 // Normal equality suffices 118 // Normal equality suffices
119 return valueInterface(v1, false) == valueInterface(v2, false) 119 return valueInterface(v1, false) == valueInterface(v2, false)
120 } 120 }
121
122 panic("Not reached")
123 } 121 }
124 122
125 // DeepEqual tests for deep equality. It uses normal == equality where 123 // DeepEqual tests for deep equality. It uses normal == equality where
126 // possible but will scan elements of arrays, slices, maps, and fields of 124 // possible but will scan elements of arrays, slices, maps, and fields of
127 // structs. In maps, keys are compared with == but elements use deep 125 // structs. In maps, keys are compared with == but elements use deep
128 // equality. DeepEqual correctly handles recursive types. Functions are equal 126 // equality. DeepEqual correctly handles recursive types. Functions are equal
129 // only if they are both nil. 127 // only if they are both nil.
130 // An empty slice is not equal to a nil slice. 128 // An empty slice is not equal to a nil slice.
131 func DeepEqual(a1, a2 interface{}) bool { 129 func DeepEqual(a1, a2 interface{}) bool {
132 if a1 == nil || a2 == nil { 130 if a1 == nil || a2 == nil {
133 return a1 == a2 131 return a1 == a2
134 } 132 }
135 v1 := ValueOf(a1) 133 v1 := ValueOf(a1)
136 v2 := ValueOf(a2) 134 v2 := ValueOf(a2)
137 if v1.Type() != v2.Type() { 135 if v1.Type() != v2.Type() {
138 return false 136 return false
139 } 137 }
140 return deepValueEqual(v1, v2, make(map[uintptr]*visit), 0) 138 return deepValueEqual(v1, v2, make(map[uintptr]*visit), 0)
141 } 139 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b