@@ -53,7 +53,7 @@ export class ArrayIterator<T> implements IIterator<T> {
53
53
clone(): IIterator <T >;
54
54
iter(): IIterator <T >;
55
55
next(): T | undefined ;
56
- }
56
+ }
57
57
58
58
// @public
59
59
export function chain<T >(... objects : IterableOrArrayLike <T >[]): IIterator <T >;
@@ -64,7 +64,7 @@ export class ChainIterator<T> implements IIterator<T> {
64
64
clone(): IIterator <T >;
65
65
iter(): IIterator <T >;
66
66
next(): T | undefined ;
67
- }
67
+ }
68
68
69
69
// @public
70
70
export function each<T >(object : IterableOrArrayLike <T >, fn : (value : T , index : number ) => boolean | void ): void ;
@@ -74,7 +74,6 @@ export function empty<T>(): IIterator<T>;
74
74
75
75
// @public
76
76
export class EmptyIterator <T > implements IIterator <T > {
77
- constructor ();
78
77
clone(): IIterator <T >;
79
78
iter(): IIterator <T >;
80
79
next(): T | undefined ;
@@ -89,7 +88,7 @@ export class EnumerateIterator<T> implements IIterator<[number, T]> {
89
88
clone(): IIterator <[number , T ]>;
90
89
iter(): IIterator <[number , T ]>;
91
90
next(): [number , T ] | undefined ;
92
- }
91
+ }
93
92
94
93
// @public
95
94
export function every<T >(object : IterableOrArrayLike <T >, fn : (value : T , index : number ) => boolean ): boolean ;
@@ -103,7 +102,7 @@ export class FilterIterator<T> implements IIterator<T> {
103
102
clone(): IIterator <T >;
104
103
iter(): IIterator <T >;
105
104
next(): T | undefined ;
106
- }
105
+ }
107
106
108
107
// @public
109
108
export function find<T >(object : IterableOrArrayLike <T >, fn : (value : T , index : number ) => boolean ): T | undefined ;
@@ -143,7 +142,7 @@ export class ItemIterator<T> implements IIterator<[string, T]> {
143
142
clone(): IIterator <[string , T ]>;
144
143
iter(): IIterator <[string , T ]>;
145
144
next(): [string , T ] | undefined ;
146
- }
145
+ }
147
146
148
147
// @public
149
148
export function iter<T >(object : IterableOrArrayLike <T >): IIterator <T >;
@@ -177,7 +176,7 @@ export class KeyIterator implements IIterator<string> {
177
176
clone(): IIterator <string >;
178
177
iter(): IIterator <string >;
179
178
next(): string | undefined ;
180
- }
179
+ }
181
180
182
181
// @public
183
182
export function map<T , U >(object : IterableOrArrayLike <T >, fn : (value : T , index : number ) => U ): IIterator <U >;
@@ -188,7 +187,7 @@ export class MapIterator<T, U> implements IIterator<U> {
188
187
clone(): IIterator <U >;
189
188
iter(): IIterator <U >;
190
189
next(): U | undefined ;
191
- }
190
+ }
192
191
193
192
// @public
194
193
export function max<T >(object : IterableOrArrayLike <T >, fn : (first : T , second : T ) => number ): T | undefined ;
@@ -211,7 +210,7 @@ export class RangeIterator implements IIterator<number> {
211
210
clone(): IIterator <number >;
212
211
iter(): IIterator <number >;
213
212
next(): number | undefined ;
214
- }
213
+ }
215
214
216
215
// @public
217
216
export function reduce<T >(object : IterableOrArrayLike <T >, fn : (accumulator : T , value : T , index : number ) => T ): T ;
@@ -228,7 +227,7 @@ export class RepeatIterator<T> implements IIterator<T> {
228
227
clone(): IIterator <T >;
229
228
iter(): IIterator <T >;
230
229
next(): T | undefined ;
231
- }
230
+ }
232
231
233
232
// @public
234
233
export function retro<T >(object : RetroableOrArrayLike <T >): IIterator <T >;
@@ -242,7 +241,7 @@ export class RetroArrayIterator<T> implements IIterator<T> {
242
241
clone(): IIterator <T >;
243
242
iter(): IIterator <T >;
244
243
next(): T | undefined ;
245
- }
244
+ }
246
245
247
246
// @public
248
247
export function some<T >(object : IterableOrArrayLike <T >, fn : (value : T , index : number ) => boolean ): boolean ;
@@ -256,7 +255,7 @@ export class StrideIterator<T> implements IIterator<T> {
256
255
clone(): IIterator <T >;
257
256
iter(): IIterator <T >;
258
257
next(): T | undefined ;
259
- }
258
+ }
260
259
261
260
// @public
262
261
export namespace StringExt {
@@ -280,7 +279,7 @@ export class TakeIterator<T> implements IIterator<T> {
280
279
clone(): IIterator <T >;
281
280
iter(): IIterator <T >;
282
281
next(): T | undefined ;
283
- }
282
+ }
284
283
285
284
// @public
286
285
export function toArray<T >(object : IterableOrArrayLike <T >): T [];
@@ -301,7 +300,7 @@ export class ValueIterator<T> implements IIterator<T> {
301
300
clone(): IIterator <T >;
302
301
iter(): IIterator <T >;
303
302
next(): T | undefined ;
304
- }
303
+ }
305
304
306
305
// @public
307
306
export function zip<T >(... objects : IterableOrArrayLike <T >[]): IIterator <T []>;
@@ -312,8 +311,7 @@ export class ZipIterator<T> implements IIterator<T[]> {
312
311
clone(): IIterator <T []>;
313
312
iter(): IIterator <T []>;
314
313
next(): T [] | undefined ;
315
- }
316
-
314
+ }
317
315
318
316
// (No @packageDocumentation comment for this package)
319
317
0 commit comments