Sequences

A sequence is one or more operations that lazily evaluate items from a collection. Sequences often start off as another type of collection, such as a list or map. You convert collections into sequences when you want to perform some sort of transformation, like this:

import { Seq } from 'immutable';
const mySeq = Seq();
console.log('Seq', mySeq instanceof Seq);
// -> Seq true
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.224.33.107