(coll: Coll<Value> | undefined)
| 27 | isUndefined(coll) || collSize(coll) == 0; |
| 28 | |
| 29 | export const collValues = <Value>(coll: Coll<Value> | undefined): Value[] => [ |
| 30 | ...(coll?.values() ?? []), |
| 31 | ]; |
| 32 | |
| 33 | export const collClear = (coll: Coll<unknown>): void => coll.clear(); |
| 34 |
no outgoing calls
no test coverage detected
searching dependent graphs…