( ...iterables: Array<Iterable<T>> )
| 129 | export const globalObjectIdGenerator = new ObjectIdGenerator() |
| 130 | |
| 131 | export function* concatIterable<T>( |
| 132 | ...iterables: Array<Iterable<T>> |
| 133 | ): Iterable<T> { |
| 134 | for (const iterable of iterables) { |
| 135 | yield* iterable |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | export function* mapIterable<T, U>( |
| 140 | it: Iterable<T>, |
nothing calls this directly
no outgoing calls
no test coverage detected