()
| 76 | reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number) => T, initialValue: T): T; |
| 77 | reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number) => U, initialValue: U): U; |
| 78 | toArray(): T[]; |
| 79 | forEach(callbackfn: (value: T, index: number) => void): void; |
| 80 | some(predicate: (value: T, index: number) => unknown): boolean; |
| 81 | every(predicate: (value: T, index: number) => unknown): boolean; |
no outgoing calls
no test coverage detected