final class SortedMapOps[K, A] extends AnyVal
- Source
- SortedMapOps.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SortedMapOps
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- def alter(k: K)(f: (Option[A]) => Option[A]): SortedMap[K, A]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- 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: scala.Ordering[K]): SortedMap[K, C]
- def intersectWithKey[B, C](m: SortedMap[K, B])(f: (K, A, B) => C)(implicit K: scala.Ordering[K]): SortedMap[K, C]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapKeys[K2](f: (K) => K2)(implicit arg0: scala.Ordering[K2]): SortedMap[K2, A]
- def toString(): String
- Definition Classes
- Any
- def unionWith(m: SortedMap[K, A])(f: (A, A) => A)(implicit K: scala.Ordering[K]): SortedMap[K, A]
- def unionWithKey(m: SortedMap[K, A])(f: (K, A, A) => A)(implicit K: scala.Ordering[K]): SortedMap[K, A]