- Mastering Immutable.js
- Adam Boduch
- 64字
- 2021-07-08 10:30:07
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
推薦閱讀
- Mastering Entity Framework
- Java從入門到精通(第4版)
- 運用后端技術處理業務邏輯(藍橋杯軟件大賽培訓教材-Java方向)
- Advanced UFT 12 for Test Engineers Cookbook
- C陷阱與缺陷
- Mastering PowerCLI
- Laravel Design Patterns and Best Practices
- Spring Boot從入門到實戰
- Getting Started with Web Components
- Learning Java Lambdas
- Mastering Linux Kernel Development
- OpenStack Networking Cookbook
- Hands-On Game Development Patterns with Unity 2019
- C#多線程編程實戰
- 鯤鵬架構入門與實戰