// ets_tracing: off import * as S from "../HashSet/index.js" import type { HashMap } from "./index.js" /** * Get the set of keys */ export function keySet(self: HashMap) { return new S.HashSet(self) }