ts-hashset
v1.0.0
Published
``` npm install ts-hashset ```
Downloads
5
Readme
Installation
npm install ts-hashsetInput validation
import { HashSet } from 'ts-hashset';
const set = HashSet.of([1, 2, 3]);
function foo(set: Set<number>) {}
foo(set); // OK