@lucid-softworks/multimap
v0.1.0
Published
A Map whose keys own insertion-ordered sets of values.
Downloads
174
Maintainers
Readme
@lucid-softworks/multimap
A Map of insertion-ordered unique value sets, with value-level membership and deletion.
import { MultiMap } from "@lucid-softworks/multimap";
const tags = new MultiMap<string, string>();
tags.add("post", "typescript").add("post", "utilities");