Run a lambda on each element in the array.
(f: ArrayFunc<T, void>)
| 117 | |
| 118 | /** Run a lambda on each element in the array. */ |
| 119 | forEach(f: ArrayFunc<T, void>): void; |
| 120 | |
| 121 | /** Convert this to a plain javascript array. */ |
| 122 | array(): T[]; |
no outgoing calls
no test coverage detected