UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

12 lines (9 loc) 219 B
// ets_tracing: off import * as S from "../HashSet/index.js" import type { HashMap } from "./index.js" /** * Get the set of keys */ export function keySet<K, V>(self: HashMap<K, V>) { return new S.HashSet(self) }