import type { HashMap } from "../../HashMap.js" import type { HashSet } from "../../HashSet.js" import { makeImpl } from "../hashSet.js" /** @internal */ export function keySet(self: HashMap): HashSet { return makeImpl(self) }