Daniel McDonald

Results 2 issues of Daniel McDonald

A function similar to scala's [AbstractMap.mapValues](http://www.scala-lang.org/api/2.11.4/index.html#scala.collection.immutable.AbstractMap@mapValues[C]%28f:B=%3EC%29:scala.collection.immutable.Map[A,C]) would be useful, e.g.: ``` var m = mori.hashMap("foo", 1, "bar", 2); mori.mapValues(mori.inc); // => {"foo" 2, "bar" 3} ```

Looking at the Hash Map documentation for the values function: ``` vals mori.values(map) Returns the values of a hash map as a sequence. ``` First, the `mori.values(map)` appears to be...