UNPKG

reign

Version:

A persistent, typed-objects implementation.

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