(array: Pair<Value>)
| 13 | export const pairNewMap = <Value>(): Pair<IdMap<Value>> => [mapNew(), mapNew()]; |
| 14 | |
| 15 | export const pairClone = <Value>(array: Pair<Value>): Pair<Value> => [...array]; |
| 16 | |
| 17 | export const pairIsEqual = <Value>([entry1, entry2]: Pair<Value>): boolean => |
| 18 | entry1 === entry2; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…