You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
add multi type multiMap (#10) - add multi type **multiMap<T1, T2>** to reduce RAM and speed up lookup. - add multi type **multiMapBS<T1, T2>** binary search version. - add example for multi type - update examples - update readme.md - minor edits
add multiMapCache and multiMapBS template functions (#8) - add **multiMapCache()**, experimental version that caches the last value. to be used with input that do not change often. - add **multiMapBS()**, experimental version that uses binary search. to be used with arrays > 10 (rule of thumb) - add examples - major rewrite readme.md