( pair: Pair<Coll<unknown>>, func: any = collSize2, )
| 6 | export const pairNew = <Value>(value: Value): Pair<Value> => [value, value]; |
| 7 | |
| 8 | export const pairCollSize2 = ( |
| 9 | pair: Pair<Coll<unknown>>, |
| 10 | func: any = collSize2, |
| 11 | ): number => func(pair[0]) + func(pair[1]); |
| 12 | |
| 13 | export const pairNewMap = <Value>(): Pair<IdMap<Value>> => [mapNew(), mapNew()]; |
| 14 |
no outgoing calls
no test coverage detected
searching dependent graphs…