UNPKG

reign

Version:

A persistent, typed-objects implementation.

9 lines (7 loc) 181 B
/* @flow */ import type {Realm} from "../.."; export function make ({HashSetType, T}: Realm): HashSetType<any, any> { return new HashSetType(T.Any, { name: 'HashSet' }); }