diff --git a/README.md b/README.md index 7264b2a..3222358 100644 --- a/README.md +++ b/README.md @@ -317,16 +317,24 @@ This will return `true` if: #### `.inplaceSortAs(..)` +#### `.toKeys(..)` + +#### `.toMap(..)` + + +### Large `Array` iteration (chunked) + +Iterating over very large `Array` instances in JavaScript can block execution, +to avoid this `types.js` implements `.map(..)`/`.filter(..)`/`.reduce(..)` +equivalent methods that split the array into chunks and iterate through +them asynchroniosly giving the runtime a chance to run in between. + #### `.mapChunks(..)` #### `.filterChunks(..)` #### `.reduceChunks(..)` -#### `.toKeys(..)` - -#### `.toMap(..)` - ### `Array` (polyfill)