LEFT | RIGHT |
(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 Loading... |
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 } |
LEFT | RIGHT |