Skip to content

0.1.0

Compare
Choose a tag to compare
@dgraham dgraham released this 22 May 23:30
· 31 commits to master since this release
v0.1.0
import MultiMap from '@github/multimap'

const map = new MultiMap<string, number>()
map.set('a', 1).set('a', 2)
map.get('a') // => Set([1, 2])