Browse Source

[docs] Updated to show new [] accessor!

master
Muthu Kumar 6 years ago
parent
commit
a9327f091f
  1. 7
      README.md
  2. 2
      utils/index.js

7
README.md

@ -28,6 +28,9 @@ const infinity = new InfiniteList(<start>, <next>);
// Gets item at index // Gets item at index
infinity.get(<index>); infinity.get(<index>);
// Equivalent to the above! (Modern browsers and node only)
infinity[<index>];
// Returns array of given number of InfiniteListItems from index 0 // Returns array of given number of InfiniteListItems from index 0
infinity.take(<number>); infinity.take(<number>);
@ -46,6 +49,7 @@ You can pass in any starting value. `infinity` cheerfully ignores what you pass
`InfiniteList` is iterable. `InfiniteList` is iterable.
```JavaScript ```JavaScript
// (Modern browsers and node only)
for (let item of infinity) { for (let item of infinity) {
// Remember to have an exit condition // Remember to have an exit condition
console.log(item); console.log(item);
@ -67,6 +71,9 @@ log(fibonacci.take(10).map(x => x.value)); // -> [ 0, 1, 1, 2, 3, 5, 8, 13, 21,
// What's the 50th item? // What's the 50th item?
log(fibonacci.get(50).value); // -> 12586269025 log(fibonacci.get(50).value); // -> 12586269025
// This is equivalent of the above! (modern browsers only!)
log(fibonacci[50].value); // -> 12586269025
// What's the next item? // What's the next item?
log(fibonacci.get(50).next().value); // -> 20365011074 log(fibonacci.get(50).next().value); // -> 20365011074

2
utils/index.js

@ -1,3 +1,5 @@
'use strict';
const JSON = require('./cycle'); const JSON = require('./cycle');
const always = x => _ => x; const always = x => _ => x;

Loading…
Cancel
Save