Thanks to visit codestin.com Credit goes to github.com
There was an error while loading. Please reload this page.
72b1404
new MultiMap([['k', 1], ['k', 2]])
497b756
import MultiMap from '@github/multimap' const map = new MultiMap<string, number>() map.set('a', 1).set('a', 2) map.get('a') // => Set([1, 2])