(...values)
| 171 | // ### ES6 Collection methods (ES6 Array and Map) |
| 172 | |
| 173 | concat(...values) { |
| 174 | return reify(this, concatFactory(this, values)); |
| 175 | }, |
| 176 | |
| 177 | includes(searchValue) { |
| 178 | return this.some((value) => is(value, searchValue)); |
nothing calls this directly
no test coverage detected