SortedMapOps

final
class SortedMapOps[K, A](self: SortedMap[K, A]) extends AnyVal
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def alter(k: K)(f: Option[A] => Option[A]): SortedMap[K, A]
def getOrAdd[F[_]](k: K)(fa: => F[A])(implicit F: Applicative[F]): F[(SortedMap[K, A], A)]
def insertWith(k: K, v: A)(f: (A, A) => A): SortedMap[K, A]
def intersectWith[B, C](m: SortedMap[K, B])(f: (A, B) => C)(implicit K: Ordering[K]): SortedMap[K, C]
def intersectWithKey[B, C](m: SortedMap[K, B])(f: (K, A, B) => C)(implicit K: Ordering[K]): SortedMap[K, C]
def mapKeys[K2 : Ordering](f: K => K2): SortedMap[K2, A]
def unionWith(m: SortedMap[K, A])(f: (A, A) => A)(implicit K: Ordering[K]): SortedMap[K, A]
def unionWithKey(m: SortedMap[K, A])(f: (K, A, A) => A)(implicit K: Ordering[K]): SortedMap[K, A]