Showing content from http://www.scala-lang.org/api/2.12.19/scala/collection/Map.html below:
Scala Standard Library 2.12.19 - scala.collection.Map
trait Map[K, +V] extends Iterable[(K, V)] with GenMap[K, V] with MapLike[K, V, Map[K, V]]
î· î
Ordering
- Alphabetic
- By Inheritance
Inherited
- Map
- MapLike
- Subtractable
- PartialFunction
- Function1
- GenMap
- GenMapLike
- Iterable
- IterableLike
- Equals
- GenIterable
- GenIterableLike
- Traversable
- GenTraversable
- GenericTraversableTemplate
- TraversableLike
- GenTraversableLike
- Parallelizable
- TraversableOnce
- GenTraversableOnce
- FilterMonadic
- HasNewBuilder
- AnyRef
- Any
Implicitly
- by CollectionsHaveToParArray
- by MonadOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- by alternateImplicit
Abstract Value Members
- î
abstract def get(key: K): Option[V]
- î
abstract def iterator: Iterator[(K, V)]
Concrete Value Members
- î
final def !=(arg0: Any): Boolean
- î
final def ##(): Int
- î
def +(kvs: (K, V)*): Map[K, V]
- î
abstract def +(kv: (K, V)): Map[K, V]
- î
def ++(xs: Traversable[(K, V)]): Map[K, V]
- î
def ++[B >: (K, V), That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Map[K, V], B, That]): That
- î
def ++:[B >: (K, V), That](that: Traversable[B])(implicit bf: CanBuildFrom[Map[K, V], B, That]): That
- î
def ++:[B](that: TraversableOnce[B]): Map[B]
- î
def -(elem1: K, elem2: K, elems: K*): Map[K, V]
- î
abstract def -(key: K): Map[K, V]
- î
def --(xs: GenTraversableOnce[K]): Map[K, V]
- î
def ->[B](y: B): (Map[K, V], 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 companion: GenericCompanion[Iterable]
- î
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): Map[K, V]
- î
def dropRight(n: Int): Map[K, V]
- î
def dropWhile(p: ((K, V)) â Boolean): Map[K, V]
- î
def empty: Map[K, V]
- î
def ensuring(cond: (Map[K, V]) â Boolean, msg: â Any): Map[K, V]
- î
def ensuring(cond: (Map[K, V]) â Boolean): Map[K, V]
- î
def ensuring(cond: Boolean, msg: â Any): Map[K, V]
- î
def ensuring(cond: Boolean): Map[K, V]
- î
final def eq(arg0: AnyRef): Boolean
- î
def equals(that: Any): Boolean
- î
def exists(p: ((K, V)) â Boolean): Boolean
- î
def filter(p: ((K, V)) â Boolean): Map[K, V]
- î
def filterKeys(p: (K) â Boolean): Map[K, V]
- î
def filterNot(p: ((K, V)) â Boolean): Map[K, V]
- î
def finalize(): Unit
- î
def find(p: ((K, V)) â Boolean): Option[(K, V)]
- î
def flatMap[B](f: (A) â GenTraversableOnce[B]): Map[B]
- î
def flatten[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
- î
def genericBuilder[B]: Builder[B, Iterable[B]]
- î
final def getClass(): Class[_]
- î
def getOrElse(key: K, default: â V): V
- î
def groupBy[K](f: ((K, V)) â K): immutable.Map[K, Map[K, V]]
- î
def grouped(size: Int): Iterator[Map[K, V]]
- î
def hasDefiniteSize: Boolean
- î
def hashCode(): Int
- î
def head: (K, V)
- î
def headOption: Option[(K, V)]
- î
def init: Map[K, V]
- î
def inits: Iterator[Map[K, V]]
- î
def isDefinedAt(key: K): Boolean
- î
def isEmpty: Boolean
- î
final def isInstanceOf[T0]: Boolean
- î
final def isTraversableAgain: Boolean
- î
def keySet: Set[K]
- î
def keys: 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), Map[K, V]]
- î
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): (Map[K, V], Map[K, V])
- î
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: Map[K, V]
- î
def reversed: 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[Map[K, V], B, That]): That
- î
def scanLeft[B, That](z: B)(op: (B, (K, V)) â B)(implicit bf: CanBuildFrom[Map[K, V], B, That]): That
- î
def scanRight[B, That](z: B)(op: ((K, V), B) â B)(implicit bf: CanBuildFrom[Map[K, V], B, That]): That
- î
def seq: Map[K, V]
- î
def size: Int
- î
def sizeHintIfCheap: Int
- î
def slice(from: Int, until: Int): Map[K, V]
- î
def sliding(size: Int, step: Int): Iterator[Map[K, V]]
- î
def sliding(size: Int): Iterator[Map[K, V]]
- î
def span(p: ((K, V)) â Boolean): (Map[K, V], Map[K, V])
- î
def splitAt(n: Int): (Map[K, V], Map[K, V])
- î
def stringPrefix: String
- î
def sum: A
- î
final def synchronized[T0](arg0: â T0): T0
- î
def tail: Map[K, V]
- î
def tails: Iterator[Map[K, V]]
- î
def take(n: Int): Map[K, V]
- î
def takeRight(n: Int): Map[K, V]
- î
def takeWhile(p: ((K, V)) â Boolean): Map[K, V]
- î
def thisCollection: Iterable[(K, V)]
- î
def to[Col[_]]: Col[A]
- î
def toArray: Array[A]
- î
def toBuffer[E >: (K, V)]: Buffer[E]
- î
def toCollection(repr: Map[K, V]): Iterable[(K, V)]
- î
def toIndexedSeq: immutable.IndexedSeq[(K, V)]
- î
def toIterable: Iterable[(K, V)]
- î
def toIterator: Iterator[(K, V)]
- î
def toList: List[(K, V)]
- î
def toMap[T, U]: Map[T, U]
- î
def toParArray: ParArray[T]
- î
def toSeq: Seq[(K, V)]
- î
def toSet[B >: (K, V)]: immutable.Set[B]
- î
def toStream: immutable.Stream[(K, V)]
- î
def toString(): String
- î
def toTraversable: Traversable[(K, V)]
- î
def toVector: Vector[(K, V)]
- î
def transpose[B](implicit asTraversable: ((K, V)) â GenTraversableOnce[B]): Iterable[Iterable[B]]
- î
def unzip[A1, A2](implicit asPair: ((K, V)) â (A1, A2)): (Iterable[A1], Iterable[A2])
- î
def unzip3[A1, A2, A3](implicit asTriple: ((K, V)) â (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
- î
def updated(key: K, value: V): Map[K, V]
- î
def values: Iterable[V]
- î
def valuesIterator: Iterator[V]
- î
def view(from: Int, until: Int): IterableView[(K, V), Map[K, V]]
- î
def view: IterableView[(K, V), Map[K, V]]
- î
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), Map[K, V]]
- î
def zip[B](that: GenIterable[B]): Map[(A, B)]
- î
def zipAll[B](that: Iterable[B], thisElem: A, thatElem: B): Map[(A, B)]
- î
def zipWithIndex: Map[(A, Int)]
- î
def â[B](y: B): (Map[K, V], 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 Map[K, V] to MonadOps[(K, V)] Inherited by implicit conversion Ensuring from Map[K, V] to Ensuring[Map[K, V]] Inherited by implicit conversion ArrowAssoc from Map[K, V] to ArrowAssoc[Map[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