MCPcopy
hub / github.com/immutable-js/immutable-js / concat

Function concat

src/CollectionImpl.js:173–175  ·  view source on GitHub ↗
(...values)

Source from the content-addressed store, hash-verified

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));

Callers

nothing calls this directly

Calls 2

reifyFunction · 0.90
concatFactoryFunction · 0.90

Tested by

no test coverage detected