Deprecated: use ConsistsOf instead.
(values ...interface{})
| 1185 | |
| 1186 | // Deprecated: use ConsistsOf instead. |
| 1187 | func (a *Array) Elements(values ...interface{}) *Array { |
| 1188 | return a.ConsistsOf(values...) |
| 1189 | } |
| 1190 | |
| 1191 | // Deprecated: use NotConsistsOf instead. |
| 1192 | func (a *Array) NotElements(values ...interface{}) *Array { |
nothing calls this directly
no test coverage detected