A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.scala-lang.org/api/2.13.10/scala/collection/mutable/OpenHashMap.html below:

Scala Standard Library 2.13.10 - scala.collection.mutable.OpenHashMap

class OpenHashMap[Key, Value] extends AbstractMap[Key, Value] with MapOps[Key, Value, OpenHashMap, OpenHashMap[Key, Value]] with StrictOptimizedIterableOps[(Key, Value), Iterable, OpenHashMap[Key, Value]] with MapFactoryDefaults[Key, Value, OpenHashMap, Iterable] with DefaultSerializable



Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OpenHashMap
  2. DefaultSerializable
  3. Serializable
  4. StrictOptimizedIterableOps
  5. AbstractMap
  6. Map
  7. MapOps
  8. Shrinkable
  9. Builder
  10. Growable
  11. Clearable
  12. Cloneable
  13. Cloneable
  14. Iterable
  15. AbstractMap
  16. Map
  17. Equals
  18. MapFactoryDefaults
  19. MapOps
  20. PartialFunction
  21. Function1
  22. AbstractIterable
  23. Iterable
  24. IterableFactoryDefaults
  25. IterableOps
  26. IterableOnceOps
  27. IterableOnce
  28. AnyRef
  29. Any
Implicitly
  1. by UnliftOps
  2. by iterableOnceExtensionMethods
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
Visibility
  1. Public
  2. Protected
Instance Constructors
  1.  new OpenHashMap()
  2.  new OpenHashMap(initialSize: Int)
Value Members
  1.  final def !=(arg0: Any): Boolean
  2.  final def ##: Int
  3.  def ++[V2 >: Value](xs: IterableOnce[(Key, V2)]): OpenHashMap[Key, V2]
  4.  final def ++[B >: (Key, Value)](suffix: IterableOnce[B]): Iterable[B]
  5.  final def ++=(xs: IterableOnce[(Key, Value)]): OpenHashMap.this.type
  6.  final def +=(elem: (Key, Value)): OpenHashMap.this.type
  7.  final def --=(xs: IterableOnce[Key]): OpenHashMap.this.type
  8.  final def -=(elem: Key): OpenHashMap.this.type
  9.  def ->[B](y: B): (OpenHashMap[Key, Value], B)
  10.  final def ==(arg0: Any): Boolean
  11.  def addAll(xs: IterableOnce[(Key, Value)]): OpenHashMap.this.type
  12.  def addOne(kv: (Key, Value)): OpenHashMap.this.type
  13.  def addString(sb: StringBuilder, start: String, sep: String, end: String): sb.type
  14.  final def addString(b: StringBuilder): b.type
  15.  final def addString(b: StringBuilder, sep: String): b.type
  16.  def andThen[C](k: PartialFunction[Value, C]): PartialFunction[Key, C]
  17.  def andThen[C](k: (Value) => C): PartialFunction[Key, C]
  18.  def apply(key: Key): Value
  19.  def applyOrElse[K1 <: Key, V1 >: Value](x: K1, default: (K1) => V1): V1
  20.  final def asInstanceOf[T0]: T0
  21.  def canEqual(that: Any): Boolean
  22.  def className: String
  23.  def clear(): Unit
  24.  def clone(): OpenHashMap[Key, Value]
  25.  final def coll: OpenHashMap.this.type
  26.  def collect[B](pf: PartialFunction[(Key, Value), B]): Iterable[B]
  27.  def collect[K2, V2](pf: PartialFunction[(Key, Value), (K2, V2)]): OpenHashMap[K2, V2]
  28.  def collectFirst[B](pf: PartialFunction[(Key, Value), B]): Option[B]
  29.  def compose[R](k: PartialFunction[R, Key]): PartialFunction[R, Value]
  30.  def compose[A](g: (A) => Key): (A) => Value
  31.  def concat[V2 >: Value](suffix: IterableOnce[(Key, V2)]): OpenHashMap[Key, V2]
  32.  def concat[B >: (Key, Value)](suffix: IterableOnce[B]): Iterable[B]
  33.  def contains(key: Key): Boolean
  34.  def copyToArray[B >: (Key, Value)](xs: Array[B], start: Int, len: Int): Int
  35.  def copyToArray[B >: (Key, Value)](xs: Array[B], start: Int): Int
  36.  def copyToArray[B >: (Key, Value)](xs: Array[B]): Int
  37.  def corresponds[B](that: IterableOnce[B])(p: ((Key, Value), B) => Boolean): Boolean
  38.  def count(p: ((Key, Value)) => Boolean): Int
  39.  def default(key: Key): Value
  40.  def drop(n: Int): OpenHashMap[Key, Value]
  41.  def dropRight(n: Int): OpenHashMap[Key, Value]
  42.  def dropWhile(p: ((Key, Value)) => Boolean): OpenHashMap[Key, Value]
  43.  def elementWise: ElementWiseExtractor[Key, Value]
  44.  def empty: OpenHashMap[Key, Value]
  45.  def ensuring(cond: (OpenHashMap[Key, Value]) => Boolean, msg: => Any): OpenHashMap[Key, Value]
  46.  def ensuring(cond: (OpenHashMap[Key, Value]) => Boolean): OpenHashMap[Key, Value]
  47.  def ensuring(cond: Boolean, msg: => Any): OpenHashMap[Key, Value]
  48.  def ensuring(cond: Boolean): OpenHashMap[Key, Value]
  49.  final def eq(arg0: AnyRef): Boolean
  50.  def equals(o: Any): Boolean
  51.  def exists(p: ((Key, Value)) => Boolean): Boolean
  52.  def filter(pred: ((Key, Value)) => Boolean): OpenHashMap[Key, Value]
  53.  def filterImpl(pred: ((Key, Value)) => Boolean, isFlipped: Boolean): OpenHashMap[Key, Value]
  54.  def filterInPlace(f: (Key, Value) => Boolean): OpenHashMap.this.type
  55.  def filterNot(pred: ((Key, Value)) => Boolean): OpenHashMap[Key, Value]
  56.  def finalize(): Unit
  57.  def find(p: ((Key, Value)) => Boolean): Option[(Key, Value)]
  58.  def flatMap[B](f: ((Key, Value)) => IterableOnce[B]): Iterable[B]
  59.  def flatMap[K2, V2](f: ((Key, Value)) => IterableOnce[(K2, V2)]): OpenHashMap[K2, V2]
  60.  def flatten[B](implicit toIterableOnce: ((Key, Value)) => IterableOnce[B]): Iterable[B]
  61.  def fold[A1 >: (Key, Value)](z: A1)(op: (A1, A1) => A1): A1
  62.  def foldLeft[B](z: B)(op: (B, (Key, Value)) => B): B
  63.  def foldRight[B](z: B)(op: ((Key, Value), B) => B): B
  64.  def forall(p: ((Key, Value)) => Boolean): Boolean
  65.  def foreach[U](f: ((Key, Value)) => U): Unit
  66.  def foreachEntry[U](f: (Key, Value) => U): Unit
  67.  def fromSpecific(coll: IterableOnce[(Key, Value)]): OpenHashMap[Key, Value]
  68.  def get(key: Key): Option[Value]
  69.  final def getClass(): Class[_ <: AnyRef]
  70.  def getOrElse[V1 >: Value](key: Key, default: => V1): V1
  71.  def getOrElseUpdate(key: Key, op: => Value): Value
  72.  def groupBy[K](f: ((Key, Value)) => K): immutable.Map[K, OpenHashMap[Key, Value]]
  73.  def groupMap[K, B](key: ((Key, Value)) => K)(f: ((Key, Value)) => B): immutable.Map[K, Iterable[B]]
  74.  def groupMapReduce[K, B](key: ((Key, Value)) => K)(f: ((Key, Value)) => B)(reduce: (B, B) => B): immutable.Map[K, B]
  75.  def grouped(size: Int): Iterator[OpenHashMap[Key, Value]]
  76.  def hashCode(): Int
  77.  def hashOf(key: Key): Int
  78.  def head: (Key, Value)
  79.  def headOption: Option[(Key, Value)]
  80.  def init: OpenHashMap[Key, Value]
  81.  def inits: Iterator[OpenHashMap[Key, Value]]
  82.  def isDefinedAt(key: Key): Boolean
  83.  def isEmpty: Boolean
  84.  final def isInstanceOf[T0]: Boolean
  85.  def isTraversableAgain: Boolean
  86.  def iterableFactory: IterableFactory[Iterable]
  87.  def iterator: Iterator[(Key, Value)]
  88.  def keySet: collection.Set[Key]
  89.  def keyStepper[S <: Stepper[_]](implicit shape: StepperShape[Key, S]): S
  90.  def keys: collection.Iterable[Key]
  91.  def keysIterator: Iterator[Key]
  92.  def knownSize: Int
  93.  def last: (Key, Value)
  94.  def lastOption: Option[(Key, Value)]
  95.  def lazyZip[B](that: collection.Iterable[B]): LazyZip2[(Key, Value), B, OpenHashMap.this.type]
  96.  def lift: (Key) => Option[Value]
  97.  def map[B](f: ((Key, Value)) => B): Iterable[B]
  98.  def map[K2, V2](f: ((Key, Value)) => (K2, V2)): OpenHashMap[K2, V2]
  99.  def mapFactory: MapFactory[OpenHashMap]
  100.  final def mapFromIterable[K2, V2](it: collection.Iterable[(K2, V2)]): OpenHashMap[K2, V2]
  101.  def mapResult[NewTo](f: (OpenHashMap[Key, Value]) => NewTo): Builder[(Key, Value), NewTo]
  102.  def mapValuesInPlace(f: (Key, Value) => Value): OpenHashMap.this.type
  103.  def max[B >: (Key, Value)](implicit ord: math.Ordering[B]): (Key, Value)
  104.  def maxBy[B](f: ((Key, Value)) => B)(implicit cmp: math.Ordering[B]): (Key, Value)
  105.  def maxByOption[B](f: ((Key, Value)) => B)(implicit cmp: math.Ordering[B]): Option[(Key, Value)]
  106.  def maxOption[B >: (Key, Value)](implicit ord: math.Ordering[B]): Option[(Key, Value)]
  107.  def min[B >: (Key, Value)](implicit ord: math.Ordering[B]): (Key, Value)
  108.  def minBy[B](f: ((Key, Value)) => B)(implicit cmp: math.Ordering[B]): (Key, Value)
  109.  def minByOption[B](f: ((Key, Value)) => B)(implicit cmp: math.Ordering[B]): Option[(Key, Value)]
  110.  def minOption[B >: (Key, Value)](implicit ord: math.Ordering[B]): Option[(Key, Value)]
  111.  final def mkString: String
  112.  final def mkString(sep: String): String
  113.  final def mkString(start: String, sep: String, end: String): String
  114.  final def ne(arg0: AnyRef): Boolean
  115.  def newSpecificBuilder: Builder[(Key, Value), OpenHashMap[Key, Value]]
  116.  def nonEmpty: Boolean
  117.  final def notify(): Unit
  118.  final def notifyAll(): Unit
  119.  def orElse[A1 <: Key, B1 >: Value](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
  120.  def partition(p: ((Key, Value)) => Boolean): (OpenHashMap[Key, Value], OpenHashMap[Key, Value])
  121.  def partitionMap[A1, A2](f: ((Key, Value)) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
  122.  def product[B >: (Key, Value)](implicit num: math.Numeric[B]): B
  123.  def put(key: Key, value: Value): Option[Value]
  124.  def reduce[B >: (Key, Value)](op: (B, B) => B): B
  125.  def reduceLeft[B >: (Key, Value)](op: (B, (Key, Value)) => B): B
  126.  def reduceLeftOption[B >: (Key, Value)](op: (B, (Key, Value)) => B): Option[B]
  127.  def reduceOption[B >: (Key, Value)](op: (B, B) => B): Option[B]
  128.  def reduceRight[B >: (Key, Value)](op: ((Key, Value), B) => B): B
  129.  def reduceRightOption[B >: (Key, Value)](op: ((Key, Value), B) => B): Option[B]
  130.  def remove(key: Key): Option[Value]
  131.  def result(): OpenHashMap[Key, Value]
  132.  def reversed: collection.Iterable[(Key, Value)]
  133.  def runWith[U](action: (Value) => U): (Key) => Boolean
  134.  def scan[B >: (Key, Value)](z: B)(op: (B, B) => B): Iterable[B]
  135.  def scanLeft[B](z: B)(op: (B, (Key, Value)) => B): Iterable[B]
  136.  def scanRight[B](z: B)(op: ((Key, Value), B) => B): Iterable[B]
  137.  def size: Int
  138.  def sizeCompare(that: collection.Iterable[_]): Int
  139.  def sizeCompare(otherSize: Int): Int
  140.  final def sizeHint(coll: IterableOnce[_], delta: Int = 0): Unit
  141.  def sizeHint(size: Int): Unit
  142.  final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
  143.  final def sizeIs: SizeCompareOps
  144.  def slice(from: Int, until: Int): OpenHashMap[Key, Value]
  145.  def sliding(size: Int, step: Int): Iterator[OpenHashMap[Key, Value]]
  146.  def sliding(size: Int): Iterator[OpenHashMap[Key, Value]]
  147.  def span(p: ((Key, Value)) => Boolean): (OpenHashMap[Key, Value], OpenHashMap[Key, Value])
  148.  def splitAt(n: Int): (OpenHashMap[Key, Value], OpenHashMap[Key, Value])
  149.  def stepper[S <: Stepper[_]](implicit shape: StepperShape[(Key, Value), S]): S
  150.  final def strictOptimizedCollect[B, C2](b: Builder[B, C2], pf: PartialFunction[(Key, Value), B]): C2
  151.  final def strictOptimizedConcat[B >: (Key, Value), C2](that: IterableOnce[B], b: Builder[B, C2]): C2
  152.  final def strictOptimizedFlatMap[B, C2](b: Builder[B, C2], f: ((Key, Value)) => IterableOnce[B]): C2
  153.  final def strictOptimizedFlatten[B, C2](b: Builder[B, C2])(implicit toIterableOnce: ((Key, Value)) => IterableOnce[B]): C2
  154.  final def strictOptimizedMap[B, C2](b: Builder[B, C2], f: ((Key, Value)) => B): C2
  155.  final def strictOptimizedZip[B, C2](that: IterableOnce[B], b: Builder[((Key, Value), B), C2]): C2
  156.  def stringPrefix: String
  157.  def subtractAll(xs: IterableOnce[Key]): OpenHashMap.this.type
  158.  def subtractOne(key: Key): OpenHashMap.this.type
  159.  def sum[B >: (Key, Value)](implicit num: math.Numeric[B]): B
  160.  final def synchronized[T0](arg0: => T0): T0
  161.  def tail: OpenHashMap[Key, Value]
  162.  def tails: Iterator[OpenHashMap[Key, Value]]
  163.  def take(n: Int): OpenHashMap[Key, Value]
  164.  def takeRight(n: Int): OpenHashMap[Key, Value]
  165.  def takeWhile(p: ((Key, Value)) => Boolean): OpenHashMap[Key, Value]
  166.  def tapEach[U](f: ((Key, Value)) => U): OpenHashMap[Key, Value]
  167.  def to[C1](factory: Factory[(Key, Value), C1]): C1
  168.  def toArray[B >: (Key, Value)](implicit arg0: ClassTag[B]): Array[B]
  169.  final def toBuffer[B >: (Key, Value)]: Buffer[B]
  170.  def toIndexedSeq: immutable.IndexedSeq[(Key, Value)]
  171.  def toList: immutable.List[(Key, Value)]
  172.  def toMap[K, V](implicit ev: <:<[(Key, Value), (K, V)]): immutable.Map[K, V]
  173.  def toSeq: immutable.Seq[(Key, Value)]
  174.  def toSet[B >: (Key, Value)]: immutable.Set[B]
  175.  def toString(): String
  176.  def toVector: immutable.Vector[(Key, Value)]
  177.  def transpose[B](implicit asIterable: ((Key, Value)) => collection.Iterable[B]): Iterable[Iterable[B]]
  178.  def unapply(a: Key): Option[Value]
  179.  def unlift: PartialFunction[Key, B]
  180.  def unzip[A1, A2](implicit asPair: ((Key, Value)) => (A1, A2)): (Iterable[A1], Iterable[A2])
  181.  def unzip3[A1, A2, A3](implicit asTriple: ((Key, Value)) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
  182.  def update(key: Key, value: Value): Unit
  183.  def updateWith(key: Key)(remappingFunction: (Option[Value]) => Option[Value]): Option[Value]
  184.  def valueStepper[S <: Stepper[_]](implicit shape: StepperShape[Value, S]): S
  185.  def values: collection.Iterable[Value]
  186.  def valuesIterator: Iterator[Value]
  187.  def view: MapView[Key, Value]
  188.  final def wait(): Unit
  189.  final def wait(arg0: Long, arg1: Int): Unit
  190.  final def wait(arg0: Long): Unit
  191.  def withDefault(d: (Key) => Value): Map[Key, Value]
  192.  def withDefaultValue(d: Value): Map[Key, Value]
  193.  def withFilter(p: ((Key, Value)) => Boolean): MapOps.WithFilter[Key, Value, [x]Iterable[x], [x, y]OpenHashMap[x, y]]
  194.  def writeReplace(): AnyRef
  195.  def zip[B](that: IterableOnce[B]): Iterable[((Key, Value), B)]
  196.  def zipAll[A1 >: (Key, Value), B](that: collection.Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
  197.  def zipWithIndex: Iterable[((Key, Value), Int)]
Deprecated Value Members
  1.  def +[V1 >: Value](elem1: (Key, V1), elem2: (Key, V1), elems: (Key, V1)*): OpenHashMap[Key, V1]
  2.  def +[V1 >: Value](kv: (Key, V1)): OpenHashMap[Key, V1]
  3.  def ++:[V1 >: Value](that: IterableOnce[(Key, V1)]): OpenHashMap[Key, V1]
  4.  def ++:[B >: (Key, Value)](that: IterableOnce[B]): Iterable[B]
  5.  final def +=(elem1: (Key, Value), elem2: (Key, Value), elems: (Key, Value)*): OpenHashMap.this.type
  6.  final def -(key1: Key, key2: Key, keys: Key*): OpenHashMap[Key, Value]
  7.  final def -(key: Key): OpenHashMap[Key, Value]
  8.  def --(keys: IterableOnce[Key]): OpenHashMap[Key, Value]
  9.  def -=(elem1: Key, elem2: Key, elems: Key*): OpenHashMap.this.type
  10.  def /:[B](z: B)(op: (B, (Key, Value)) => B): B
  11.  final def /:[B](z: B)(op: (B, (Key, Value)) => B): B
  12.  def :\[B](z: B)(op: ((Key, Value), B) => B): B
  13.  final def :\[B](z: B)(op: ((Key, Value), B) => B): B
  14.  def aggregate[B](z: => B)(seqop: (B, (Key, Value)) => B, combop: (B, B) => B): B
  15.  def collectFirst[B](f: PartialFunction[(Key, Value), B]): Option[B]
  16.  def companion: IterableFactory[[_]Iterable[_]]
  17.  def copyToBuffer(dest: Buffer[(Key, Value)]): Unit
  18.  final def copyToBuffer[B >: (Key, Value)](dest: Buffer[B]): Unit
  19.  def count(f: ((Key, Value)) => Boolean): Int
  20.  def exists(f: ((Key, Value)) => Boolean): Boolean
  21.  def filter(f: ((Key, Value)) => Boolean): Iterator[(Key, Value)]
  22.  def filterKeys(p: (Key) => Boolean): MapView[Key, Value]
  23.  def find(p: ((Key, Value)) => Boolean): Option[(Key, Value)]
  24.  def flatMap[B](f: ((Key, Value)) => IterableOnce[B]): IterableOnce[B]
  25.  def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
  26.  def foldLeft[B](z: B)(op: (B, (Key, Value)) => B): B
  27.  def foldRight[B](z: B)(op: ((Key, Value), B) => B): B
  28.  def forall(f: ((Key, Value)) => Boolean): Boolean
  29.  def foreach[U](f: ((Key, Value)) => U): Unit
  30.  def formatted(fmtstr: String): String
  31.  def hasDefiniteSize: Boolean
  32.  def isEmpty: Boolean
  33.  def map[B](f: ((Key, Value)) => B): IterableOnce[B]
  34.  def mapValues[W](f: (Value) => W): MapView[Key, W]
  35.  def max(implicit ord: math.Ordering[(Key, Value)]): (Key, Value)
  36.  def maxBy[B](f: ((Key, Value)) => B)(implicit cmp: math.Ordering[B]): (Key, Value)
  37.  def min(implicit ord: math.Ordering[(Key, Value)]): (Key, Value)
  38.  def minBy[B](f: ((Key, Value)) => B)(implicit cmp: math.Ordering[B]): (Key, Value)
  39.  def mkString: String
  40.  def mkString(sep: String): String
  41.  def mkString(start: String, sep: String, end: String): String
  42.  def nonEmpty: Boolean
  43.  def product(implicit num: math.Numeric[(Key, Value)]): (Key, Value)
  44.  def reduce(f: ((Key, Value), (Key, Value)) => (Key, Value)): (Key, Value)
  45.  def reduceLeft(f: ((Key, Value), (Key, Value)) => (Key, Value)): (Key, Value)
  46.  def reduceLeftOption(f: ((Key, Value), (Key, Value)) => (Key, Value)): Option[(Key, Value)]
  47.  def reduceOption(f: ((Key, Value), (Key, Value)) => (Key, Value)): Option[(Key, Value)]
  48.  def reduceRight(f: ((Key, Value), (Key, Value)) => (Key, Value)): (Key, Value)
  49.  def reduceRightOption(f: ((Key, Value), (Key, Value)) => (Key, Value)): Option[(Key, Value)]
  50.  final def repr: OpenHashMap[Key, Value]
  51.  final def retain(p: (Key, Value) => Boolean): OpenHashMap.this.type
  52.  def sameElements[B >: A](that: IterableOnce[B]): Boolean
  53.  def seq: OpenHashMap.this.type
  54.  def size: Int
  55.  def sum(implicit num: math.Numeric[(Key, Value)]): (Key, Value)
  56.  def to[C1](factory: Factory[(Key, Value), C1]): C1
  57.  def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
  58.  def toBuffer[B >: A]: Buffer[B]
  59.  def toIndexedSeq: collection.IndexedSeq[(Key, Value)]
  60.  final def toIterable: collection.Iterable[(Key, Value)]
  61.  final def toIterable: OpenHashMap.this.type
  62.  def toIterator: Iterator[(Key, Value)]
  63.  final def toIterator: Iterator[(Key, Value)]
  64.  def toList: immutable.List[(Key, Value)]
  65.  def toMap[K, V](implicit ev: <:<[(Key, Value), (K, V)]): immutable.Map[K, V]
  66.  def toSeq: immutable.Seq[(Key, Value)]
  67.  def toSet[B >: A]: immutable.Set[B]
  68.  def toStream: immutable.Stream[(Key, Value)]
  69.  final def toStream: immutable.Stream[(Key, Value)]
  70.  final def toTraversable: collection.Traversable[(Key, Value)]
  71.  final def toTraversable: collection.Traversable[(Key, Value)]
  72.  def toVector: immutable.Vector[(Key, Value)]
  73.  final def transform(f: (Key, Value) => Value): OpenHashMap.this.type
  74.  def updated[V1 >: Value](key: Key, value: V1): OpenHashMap[Key, V1]
  75.  def view(from: Int, until: Int): View[(Key, Value)]
  76.  def withFilter(f: ((Key, Value)) => Boolean): Iterator[(Key, Value)]
  77.  def →[B](y: B): (OpenHashMap[Key, Value], B)
Inherited from Map[Key, Value]

Inherited from (Key) => Value


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