UNPKG

veffect

Version:

powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha

9 lines (7 loc) 245 B
import type { HashMap } from "../../HashMap.js" import type { HashSet } from "../../HashSet.js" import { makeImpl } from "../hashSet.js" /** @internal */ export function keySet<K, V>(self: HashMap<K, V>): HashSet<K> { return makeImpl(self) }