Showing content from http://www.scala-lang.org/api/2.12.19/scala/collection/immutable/MapLike.html below:
Scala Standard Library 2.12.19 - scala.collection.immutable.MapLike
trait MapLike[K, +V, +This <: MapLike[K, V, This] with Map[K, V]] extends collection.MapLike[K, V, This] with Parallelizable[(K, V), ParMap[K, V]]
î· î
Ordering
- Alphabetic
- By Inheritance
Inherited
- MapLike
- MapLike
- Subtractable
- GenMapLike
- IterableLike
- GenIterableLike
- TraversableLike
- GenTraversableLike
- Parallelizable
- TraversableOnce
- GenTraversableOnce
- FilterMonadic
- HasNewBuilder
- Equals
- PartialFunction
- Function1
- AnyRef
- Any
Implicitly
- by CollectionsHaveToParArray
- by MonadOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- by alternateImplicit
Abstract Value Members
- î
abstract def +[V1 >: V](kv: (K, V1)): Map[K, V1]
- î
abstract def empty: This
- î
abstract def get(key: K): Option[V]
- î
abstract def iterator: Iterator[(K, V)]
- î
abstract def seq: collection.Map[K, V]
Concrete Value Members
- î
final def !=(arg0: Any): Boolean
- î
final def ##(): Int
- î
def +[V1 >: V](elem1: (K, V1), elem2: (K, V1), elems: (K, V1)*): Map[K, V1]
- î
def ++[V1 >: V](xs: GenTraversableOnce[(K, V1)]): Map[K, V1]
- î
def ++[B >: (K, V), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[This, B, That]): That
- î
def ++:[B >: (K, V), That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[This, B, That]): That
- î
def ++:[B](that: TraversableOnce[B]): Map[B]
- î
def -(elem1: K, elem2: K, elems: K*): This
- î
abstract def -(key: K): collection.Map[K, V]
- î
def --(xs: GenTraversableOnce[K]): This
- î
def ->[B](y: B): (MapLike[K, V, This], B)
- î
final def ==(arg0: Any): Boolean
- î
def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- î
def addString(b: StringBuilder): StringBuilder
- î
def addString(b: StringBuilder, sep: String): StringBuilder
- î
def aggregate[B](z: â B)(seqop: (B, (K, V)) â B, combop: (B, B) â B): B
- î
def andThen[C](k: (V) â C): PartialFunction[K, C]
- î
def apply(key: K): V
- î
def applyOrElse[K1 <: K, V1 >: V](x: K1, default: (K1) â V1): V1
- î
final def asInstanceOf[T0]: T0
- î
def canEqual(that: Any): Boolean
- î
def clone(): AnyRef
- î
def collect[B](pf: PartialFunction[A, B]): Map[B]
- î
def collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
- î
def compose[A](g: (A) â K): (A) â V
- î
def contains(key: K): Boolean
- î
def copyToArray(xs: Array[A], start: Int, len: Int): Unit
- î
def copyToArray(xs: Array[A]): Unit
- î
def copyToArray(xs: Array[A], start: Int): Unit
- î
def copyToBuffer[B >: (K, V)](dest: Buffer[B]): Unit
- î
def count(p: ((K, V)) â Boolean): Int
- î
def default(key: K): V
- î
def drop(n: Int): This
- î
def dropRight(n: Int): This
- î
def dropWhile(p: ((K, V)) â Boolean): This
- î
def ensuring(cond: (MapLike[K, V, This]) â Boolean, msg: â Any): MapLike[K, V, This]
- î
def ensuring(cond: (MapLike[K, V, This]) â Boolean): MapLike[K, V, This]
- î
def ensuring(cond: Boolean, msg: â Any): MapLike[K, V, This]
- î
def ensuring(cond: Boolean): MapLike[K, V, This]
- î
final def eq(arg0: AnyRef): Boolean
- î
def equals(that: Any): Boolean
- î
def exists(p: ((K, V)) â Boolean): Boolean
- î
def filter(p: ((K, V)) â Boolean): This
- î
def filterKeys(p: (K) â Boolean): Map[K, V]
- î
def filterNot(p: ((K, V)) â Boolean): This
- î
def finalize(): Unit
- î
def find(p: ((K, V)) â Boolean): Option[(K, V)]
- î
def flatMap[B](f: (A) â GenTraversableOnce[B]): Map[B]
- î
def fold[A1 >: (K, V)](z: A1)(op: (A1, A1) â A1): A1
- î
def foldLeft[B](z: B)(op: (B, (K, V)) â B): B
- î
def foldRight[B](z: B)(op: ((K, V), B) â B): B
- î
def forall(p: ((K, V)) â Boolean): Boolean
- î
def foreach(f: ((K, V)) â Unit): Unit
- î
final def getClass(): Class[_]
- î
def getOrElse(key: K, default: â V): V
- î
def groupBy[K](f: ((K, V)) â K): Map[K, This]
- î
def grouped(size: Int): Iterator[This]
- î
def hasDefiniteSize: Boolean
- î
def hashCode(): Int
- î
def head: (K, V)
- î
def headOption: Option[(K, V)]
- î
def init: This
- î
def inits: Iterator[This]
- î
def isDefinedAt(key: K): Boolean
- î
def isEmpty: Boolean
- î
final def isInstanceOf[T0]: Boolean
- î
final def isTraversableAgain: Boolean
- î
def keySet: Set[K]
- î
def keys: collection.Iterable[K]
- î
def keysIterator: Iterator[K]
- î
def last: (K, V)
- î
def lastOption: Option[(K, V)]
- î
def lift: (K) â Option[V]
- î
def map[B](f: (A) â B): Map[B]
- î
def mapValues[W](f: (V) â W): Map[K, W]
- î
def max: A
- î
def maxBy[B](f: (A) â B): A
- î
def min: A
- î
def minBy[B](f: (A) â B): A
- î
def mkString: String
- î
def mkString(sep: String): String
- î
def mkString(start: String, sep: String, end: String): String
- î
final def ne(arg0: AnyRef): Boolean
- î
def newBuilder: Builder[(K, V), This]
- î
def nonEmpty: Boolean
- î
final def notify(): Unit
- î
final def notifyAll(): Unit
- î
def orElse[A1 <: K, B1 >: V](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- î
def par: ParMap[K, V]
- î
def parCombiner: Combiner[(K, V), ParMap[K, V]]
- î
def partition(p: ((K, V)) â Boolean): (This, This)
- î
def product: A
- î
def reduce[A1 >: (K, V)](op: (A1, A1) â A1): A1
- î
def reduceLeft[B >: (K, V)](op: (B, (K, V)) â B): B
- î
def reduceLeftOption[B >: (K, V)](op: (B, (K, V)) â B): Option[B]
- î
def reduceOption[A1 >: (K, V)](op: (A1, A1) â A1): Option[A1]
- î
def reduceRight[B >: (K, V)](op: ((K, V), B) â B): B
- î
def reduceRightOption[B >: (K, V)](op: ((K, V), B) â B): Option[B]
- î
def repr: This
- î
def reversed: scala.List[(K, V)]
- î
def runWith[U](action: (V) â U): (K) â Boolean
- î
def sameElements(that: GenIterable[A]): Boolean
- î
def scan[B >: (K, V), That](z: B)(op: (B, B) â B)(implicit cbf: CanBuildFrom[This, B, That]): That
- î
def scanLeft[B, That](z: B)(op: (B, (K, V)) â B)(implicit bf: CanBuildFrom[This, B, That]): That
- î
def scanRight[B, That](z: B)(op: ((K, V), B) â B)(implicit bf: CanBuildFrom[This, B, That]): That
- î
def size: Int
- î
def sizeHintIfCheap: Int
- î
def slice(from: Int, until: Int): This
- î
def sliding(size: Int, step: Int): Iterator[This]
- î
def sliding(size: Int): Iterator[This]
- î
def span(p: ((K, V)) â Boolean): (This, This)
- î
def splitAt(n: Int): (This, This)
- î
def stringPrefix: String
- î
def sum: A
- î
final def synchronized[T0](arg0: â T0): T0
- î
def tail: This
- î
def tails: Iterator[This]
- î
def take(n: Int): This
- î
def takeRight(n: Int): This
- î
def takeWhile(p: ((K, V)) â Boolean): This
- î
def thisCollection: collection.Iterable[(K, V)]
- î
def to[Col[_]]: Col[A]
- î
def toArray: Array[A]
- î
def toBuffer[E >: (K, V)]: Buffer[E]
- î
def toCollection(repr: This): collection.Iterable[(K, V)]
- î
def toIndexedSeq: IndexedSeq[(K, V)]
- î
def toIterable: collection.Iterable[(K, V)]
- î
def toIterator: Iterator[(K, V)]
- î
def toList: scala.List[(K, V)]
- î
def toMap[T, U]: collection.Map[T, U]
- î
def toParArray: ParArray[T]
- î
def toSeq: collection.Seq[(K, V)]
- î
def toSet[B >: (K, V)]: Set[B]
- î
def toStream: Stream[(K, V)]
- î
def toString(): String
- î
def toTraversable: collection.Traversable[(K, V)]
- î
def toVector: scala.Vector[(K, V)]
- î
def transform[W, That](f: (K, V) â W)(implicit bf: CanBuildFrom[This, (K, W), That]): That
- î
def updated[V1 >: V](key: K, value: V1): Map[K, V1]
- î
def values: collection.Iterable[V]
- î
def valuesIterator: Iterator[V]
- î
def view(from: Int, until: Int): IterableView[(K, V), This]
- î
def view: IterableView[(K, V), This]
- î
final def wait(): Unit
- î
final def wait(arg0: Long, arg1: Int): Unit
- î
final def wait(arg0: Long): Unit
- î
def withFilter(p: ((K, V)) â Boolean): FilterMonadic[(K, V), This]
- î
def zip[B](that: GenIterable[B]): Map[(A, B)]
- î
def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Map[(A, B)]
- î
def zipWithIndex: Map[(A, Int)]
- î
def â[B](y: B): (MapLike[K, V, This], B)
Deprecated Value Members
- î
def /:[B](z: B)(op: (B, (K, V)) â B): B
- î
def :\[B](z: B)(op: ((K, V), B) â B): B
- î
def formatted(fmtstr: String): String
Inherited from (K) â V
Inherited by implicit conversion MonadOps from MapLike[K, V, This] to MonadOps[(K, V)]
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4