()
| 7 | |
| 8 | const _empty: Iterable<any> = Object.freeze([]); |
| 9 | export function empty<T = any>(): Iterable<T> { |
| 10 | return _empty; |
| 11 | } |
| 12 | |
| 13 | export function* single<T>(element: T): Iterable<T> { |
| 14 | yield element; |
nothing calls this directly
no outgoing calls
no test coverage detected