MapOps

mouse.MapOps
final class MapOps[A, B](map: Map[A, B]) extends AnyVal

Attributes

Source
map.scala
Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def mapKeys[C](f: A => C): Map[C, B]

Attributes

Source
map.scala
def updateAtKey(key: A, f: B => B): Map[A, B]

Attributes

Source
map.scala
def updateAtKeyCombine(key: A, add: B)(implicit sg: Semigroup[B]): Map[A, B]

Attributes

Source
map.scala
def updateAtKeyF[F[_]](key: A, f: B => F[B])(implicit F: Applicative[F]): F[Map[A, B]]

Attributes

Source
map.scala