Deprecated: use IsEqualUnordered instead.
(value interface{})
| 994 | |
| 995 | // Deprecated: use IsEqualUnordered instead. |
| 996 | func (a *Array) EqualUnordered(value interface{}) *Array { |
| 997 | return a.IsEqualUnordered(value) |
| 998 | } |
| 999 | |
| 1000 | // InList succeeds if the whole array is equal to one of the values from given |
| 1001 | // list of arrays. Before comparison, both array and each value are converted |
nothing calls this directly
no test coverage detected