8000 Ensure dist build is up to date · githubsheng/immutable-js@941bfdf · GitHub
[go: up one dir, main page]

Skip to content

Commit 941bfdf

Browse files
committed
Ensure dist build is up to date
1 parent c3e72ae commit 941bfdf

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

dist/immutable.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ declare module Immutable {
121121
*
122122
* Unlike a JavaScript Array, there is no distinction between an
123123
* "unset" index and an index set to `undefined`. `List#forEach` visits all
124-
* indices from 0 to size, regardless of if they were explicitly defined.
124+
* indices from 0 to size, regardless of whether they were explicitly defined.
125125
*/
126126
export module List {
127127

@@ -1943,16 +1943,22 @@ declare module Immutable {
19431943

19441944
/**
19451945
* An iterator of this `Iterable`'s keys.
1946+
*
1947+
* Note: this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `keySeq` instead, if this is what you want.
19461948
*/
19471949
keys(): Iterator<K>;
19481950

19491951
/**
19501952
* An iterator of this `Iterable`'s values.
1953+
*
1954+
* Note: this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `valueSeq` instead, if this is what you want.
19511955
*/
19521956
values(): Iterator<V>;
19531957

19541958
/**
19551959
* An iterator of this `Iterable`'s entries as `[key, value]` tuples.
1960+
*
1961+
* Note: this will return an ES6 iterator which does not support Immutable JS sequence algorithms. Use `entrySeq` instead, if this is what you want.
19561962
*/
19571963
entries(): Iterator</*[K, V]*/Array<any>>;
19581964

0 commit comments

Comments
 (0)
0