Equals checks equality by comparing the underlying dynamodb.AttributeValues. If they both hold the same value, as indicated by the rules of reflect.DeepEqual, Equals will return true.
(ov ReturnValue)
| 136 | // Equals checks equality by comparing the underlying dynamodb.AttributeValues. If they |
| 137 | // both hold the same value, as indicated by the rules of reflect.DeepEqual, Equals will return true. |
| 138 | func (rv ReturnValue) Equals(ov ReturnValue) bool { |
| 139 | return reflect.DeepEqual(rv.av, ov.av) |
| 140 | } |