export function pushOrInitMapSet( map: Map>, key: K, newValue: V ): void { let arr = map.get(key); if (typeof arr === "undefined") { map.set(key, new Set()); arr = map.get(key) as Set; } arr.add(newValue); }