final class Map1[K, +V] extends Map[K, V] with SmallMap[K, V] with Serializable
- Alphabetic
- By Inheritance
- Map1
- Serializable
- Serializable
- SmallMap
- Map
- MapOps
- Map
- MapOps
- Equals
- PartialFunction
- Function1
- Iterable
- Iterable
- Traversable
- IterableOps
- IterableOnce
- AnyRef
- Any
- by iterableOnceExtensionMethods
- by toLazyZipOps
- by toLazyZipOps
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Map1(key1: K, value1: V)
Type Members
-
class
WithFilter
extends collection.WithFilter[A, CC]
A template trait that contains just the
map,flatMap,foreachandwithFiltermethods of traitIterable.A template trait that contains just the
map,flatMap,foreachandwithFiltermethods of traitIterable.- Definition Classes
- IterableOps
-
trait
GenKeySet
extends Serializable
A generic trait that is reused by keyset implementations
A generic trait that is reused by keyset implementations
- Attributes
- protected
- Definition Classes
- MapOps
-
class
KeySet
extends Set[K] with GenKeySet
The implementation class of the set returned by
keySet.The implementation class of the set returned by
keySet.- Attributes
- protected
- Definition Classes
- MapOps
-
class
MapWithFilter
extends WithFilter
Specializes
WithFilterfor Map collection typesSpecializes
WithFilterfor Map collection types- Definition Classes
- MapOps
-
class
ImmutableKeySet
extends Set[K] with GenKeySet
The implementation class of the set returned by
keySetThe implementation class of the set returned by
keySet- Attributes
- protected
- Definition Classes
- MapOps
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+[V1 >: V](kv: (K, V1)): Map[K, V1]
Alias for
updatedAlias for
updated- V1
the type of the value in the key/value pair.
- kv
the key/value pair.
- returns
A new map with the new binding added to this map.
- Definition Classes
- MapOps
-
def
++[V2 >: V](xs: collection.Iterable[(K, V2)]): Map[K, V2]
Alias for
concatAlias for
concat- Definition Classes
- MapOps
-
final
def
++[B >: (K, V)](suffix: collection.Iterable[B]): Iterable[B]
Alias for
concatAlias for
concat- Definition Classes
- IterableOps
- Annotations
- @inline()
-
final
def
-(key: K): Map[K, V]
Alias for
removeAlias for
remove- Definition Classes
- MapOps
- Annotations
- @inline()
-
final
def
--(keys: IterableOnce[K]): Map[K, V]
Alias for
removeAllAlias for
removeAll- Definition Classes
- MapOps
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
andThen[C](k: (V) ⇒ C): PartialFunction[K, C]
- Definition Classes
- PartialFunction → Function1
-
def
apply(key: K): V
Retrieves the value which is associated with the given key.
Retrieves the value which is associated with the given key. This method invokes the
defaultmethod of the map if there is no mapping from the given key to a value. Unless overridden, thedefaultmethod throws aNoSuchElementException.- key
the key
- returns
the value associated with the given key, or the result of the map's
defaultmethod, if none exists.
-
def
applyOrElse[K1 <: K, V1 >: V](x: K1, default: (K1) ⇒ V1): V1
- Definition Classes
- MapOps → PartialFunction
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
canEqual(that: Any): Boolean
- Definition Classes
- Map → Equals
-
def
className: String
The class name of this collection.
The class name of this collection. To be used for converting to string. Collections generally print like this:
<className>(elem_1, ..., elem_n)
- returns
a string representation which starts the result of
toStringapplied to this iterable collection. By default the string prefix is the simple name of the collection class iterable collection.
- Definition Classes
- IterableOps
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
coll: Map1.this.type
- returns
This collection as a
C.
- Attributes
- protected[this]
- Definition Classes
- Iterable → IterableOps
-
def
collect[B](pf: PartialFunction[(K, V), B]): Iterable[B]
- Definition Classes
- IterableOps
-
def
collectFirst[B](pf: PartialFunction[(K, V), B]): Option[B]
Finds the first element of the iterable collection for which the given partial function is defined, and applies the partial function to it.
Finds the first element of the iterable collection for which the given partial function is defined, and applies the partial function to it.
Note: may not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- pf
the partial function
- returns
an option value containing pf applied to the first value for which it is defined, or
Noneif none exists.
- Definition Classes
- IterableOps
Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)
Example: -
def
compose[A](g: (A) ⇒ K): (A) ⇒ V
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def concat[V1 >: V](that: collection.Iterable[(K, V1)]): Map[K, V1]
-
def
concat[B >: (K, V)](suffix: collection.Iterable[B]): Iterable[B]
- Definition Classes
- IterableOps
-
def
contains(key: K): Boolean
Tests whether this map contains a binding for a key.
-
def
copyToArray[B >: (K, V)](xs: Array[B], start: Int = 0): xs.type
Copy all elements of this collection to array
xs, starting atstart.Copy all elements of this collection to array
xs, starting atstart.- Definition Classes
- IterableOps
-
def
count(p: ((K, V)) ⇒ Boolean): Int
Counts the number of elements in the iterable collection which satisfy a predicate.
Counts the number of elements in the iterable collection which satisfy a predicate.
- p
the predicate used to test elements.
- returns
the number of elements satisfying the predicate
p.
- Definition Classes
- IterableOps
-
def
default(key: K): V
Defines the default value computation for the map, returned when a key is not found The method implemented here throws an exception, but it might be overridden in subclasses.
Defines the default value computation for the map, returned when a key is not found The method implemented here throws an exception, but it might be overridden in subclasses.
- key
the given key value for which a binding is missing.
- Definition Classes
- MapOps
- Annotations
- @throws( ... )
- Exceptions thrown
-
def
drop(n: Int): Map[K, V]
The rest of the collection without its
nfirst elements.The rest of the collection without its
nfirst elements. For linear, immutable collections this should avoid making a copy.- Definition Classes
- IterableOps
-
def
dropRight(n: Int): Map[K, V]
The rest of the collection without its
nlast elements.The rest of the collection without its
nlast elements. For linear, immutable collections this should avoid making a copy.- Definition Classes
- IterableOps
-
def
dropWhile(p: ((K, V)) ⇒ Boolean): Map[K, V]
Drops longest prefix of elements that satisfy a predicate.
Drops longest prefix of elements that satisfy a predicate.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- p
The predicate used to test elements.
- returns
the longest suffix of this iterable collection whose first element does not satisfy the predicate
p.
- Definition Classes
- IterableOps
-
def
empty: Map[K, V]
The empty map of the same type as this map
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(o: Any): Boolean
- Definition Classes
- Map → Equals → AnyRef → Any
-
def
exists(p: ((K, V)) ⇒ Boolean): Boolean
Tests whether a predicate holds for at least one element of this iterable collection.
Tests whether a predicate holds for at least one element of this iterable collection.
Note: may not terminate for infinite-sized collections.
- p
the predicate used to test elements.
- returns
trueif the given predicatepis satisfied by at least one element of this iterable collection, otherwisefalse
- Definition Classes
- IterableOps
-
def
filter(pred: ((K, V)) ⇒ Boolean): Map[K, V]
Selects all elements of this iterable collection which satisfy a predicate.
Selects all elements of this iterable collection which satisfy a predicate.
- pred
the predicate used to test elements.
- returns
a new iterable collection consisting of all elements of this iterable collection that satisfy the given predicate
pred. Their order may not be preserved.
- Definition Classes
- IterableOps
-
def
filterKeys(p: (K) ⇒ Boolean): View[(K, V)]
Filters this map by retaining only keys satisfying a predicate.
Filters this map by retaining only keys satisfying a predicate.
- p
the predicate used to test keys
- returns
an immutable map consisting only of those key value pairs of this map where the key satisfies the predicate
p. The resulting map wraps the original map without copying any elements.
- Definition Classes
- MapOps
-
def
filterNot(pred: ((K, V)) ⇒ Boolean): Map[K, V]
Selects all elements of this iterable collection which do not satisfy a predicate.
Selects all elements of this iterable collection which do not satisfy a predicate.
- pred
the predicate used to test elements.
- returns
a new iterable collection consisting of all elements of this iterable collection that do not satisfy the given predicate
pred. Their order may not be preserved.
- Definition Classes
- IterableOps
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
find(p: ((K, V)) ⇒ Boolean): Option[(K, V)]
Finds the first element of the iterable collection satisfying a predicate, if any.
Finds the first element of the iterable collection satisfying a predicate, if any.
Note: may not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- p
the predicate used to test elements.
- returns
an option value containing the first element in the iterable collection that satisfies
p, orNoneif none exists.
- Definition Classes
- IterableOps
-
def
flatMap[K2, V2](f: ((K, V)) ⇒ IterableOnce[(K2, V2)]): Map[K2, V2]
- Definition Classes
- MapOps
-
def
flatMap[B](f: ((K, V)) ⇒ IterableOnce[B]): Iterable[B]
Flatmap
Flatmap
- Definition Classes
- IterableOps
-
def
flatten[B](implicit ev: ((K, V)) ⇒ IterableOnce[B]): Iterable[B]
- Definition Classes
- IterableOps
-
def
foldLeft[B](z: B)(op: (B, (K, V)) ⇒ B): B
Fold left
Fold left
- Definition Classes
- IterableOps
-
def
foldRight[B](z: B)(op: ((K, V), B) ⇒ B): B
Fold right
Fold right
- Definition Classes
- IterableOps
-
def
forall(p: ((K, V)) ⇒ Boolean): Boolean
Tests whether a predicate holds for all elements of this iterable collection.
Tests whether a predicate holds for all elements of this iterable collection.
Note: may not terminate for infinite-sized collections.
- p
the predicate used to test elements.
- returns
trueif this iterable collection is empty or the given predicatepholds for all elements of this iterable collection, otherwisefalse.
- Definition Classes
- IterableOps
-
def
foreach[U](f: ((K, V)) ⇒ U): Unit
Apply
fto each element for its side effects Note: [U] parameter needed to help scalac's type inference.Apply
fto each element for its side effects Note: [U] parameter needed to help scalac's type inference.- Definition Classes
- Map1 → IterableOps
-
def
fromIterable[E](it: collection.Iterable[E]): Iterable[E]
- Attributes
- protected[this]
- Definition Classes
- IterableOps
-
def
fromSpecificIterable(coll: collection.Iterable[(K, V)]): Map[K, V]
- Attributes
- protected[this]
- Definition Classes
- SmallMap → IterableOps
-
def
get(key: K): Option[V]
Optionally returns the value associated with a key.
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
getOrElse(key: K, default: ⇒ V): V
[use case] Returns the value associated with a key, or a default value if the key is not contained in the map.
[use case]Returns the value associated with a key, or a default value if the key is not contained in the map.
- key
the key.
- default
a computation that yields a default value in case no binding for
keyis found in the map.- returns
the value associated with
keyif it exists, otherwise the result of thedefaultcomputation.
- Definition Classes
- MapOps
Full Signaturedef getOrElse[V1 >: V](key: K, default: ⇒ V1): V1
-
def
groupBy[K](f: ((K, V)) ⇒ K): Map[K, Map[K, V]]
Partitions this iterable collection into a map of iterable collections according to some discriminator function.
Partitions this iterable collection into a map of iterable collections according to some discriminator function.
Note: When applied to a view or a lazy collection it will always force the elements.
- K
the type of keys returned by the discriminator function.
- f
the discriminator function.
- returns
A map from keys to iterable collections such that the following invariant holds:
(xs groupBy f)(k) = xs filter (x => f(x) == k)That is, every key
kis bound to a iterable collection of those elementsxfor whichf(x)equalsk.
- Definition Classes
- IterableOps
-
def
groupMap[K, B](key: ((K, V)) ⇒ K)(f: ((K, V)) ⇒ B): Map[K, Iterable[B]]
Partitions this iterable collection into a map of iterable collections according to a discriminator function
key.Partitions this iterable collection into a map of iterable collections according to a discriminator function
key. Each element in a group is transformed into a value of typeBusing thevaluefunction.It is equivalent to
groupBy(key).mapValues(_.map(f)), but more efficient.case class User(name: String, age: Int) def namesByAge(users: Seq[User]): Map[Int, Seq[String]] = users.groupMap(_.age)(_.name)
- K
the type of keys returned by the discriminator function
- B
the type of values returned by the transformation function
- key
the discriminator function
- f
the element transformation function
- Definition Classes
- IterableOps
-
def
groupMapReduce[K, B](key: ((K, V)) ⇒ K)(f: ((K, V)) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
Partitions this iterable collection into a map according to a discriminator function
key.Partitions this iterable collection into a map according to a discriminator function
key. All the values that have the same discriminator are then transformed by thevaluefunction and then reduced into a single value with thereducefunction.It is equivalent to
groupBy(key).mapValues(_.map(f).reduce(reduce)), but more efficient.def occurrences[A](as: Seq[A]): Map[A, Int] = as.groupMapReduce(identity)(_ => 1)(_ + _)
- Definition Classes
- IterableOps
-
def
grouped(size: Int): Iterator[Map[K, V]]
Partitions elements in fixed size iterable collections.
Partitions elements in fixed size iterable collections.
- size
the number of elements per group
- returns
An iterator producing iterable collections of size
size, except the last will be less than sizesizeif the elements don't divide evenly.
- Definition Classes
- IterableOps
- See also
scala.collection.Iterator, method
grouped
-
def
hashCode(): Int
- Definition Classes
- Map → AnyRef → Any
-
def
head: (K, V)
Selects the first element of this iterable collection.
Selects the first element of this iterable collection.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- returns
the first element of this iterable collection.
- Definition Classes
- IterableOps
- Exceptions thrown
NoSuchElementExceptionif the iterable collection is empty.
-
def
headOption: Option[(K, V)]
Optionally selects the first element.
Optionally selects the first element.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- returns
the first element of this iterable collection if it is nonempty,
Noneif it is empty.
- Definition Classes
- IterableOps
-
def
init: Map[K, V]
The initial part of the collection without its last element.
The initial part of the collection without its last element.
- Definition Classes
- IterableOps
-
def
isDefinedAt(key: K): Boolean
Tests whether this map contains a binding for a key.
Tests whether this map contains a binding for a key. This method, which implements an abstract method of trait
PartialFunction, is equivalent tocontains.- key
the key
- returns
trueif there is a binding forkeyin this map,falseotherwise.
- Definition Classes
- MapOps → PartialFunction
-
def
isEmpty: Boolean
Is the collection empty?
Is the collection empty?
- Definition Classes
- IterableOps
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
iterableFactory: IterableFactory[Iterable]
- Definition Classes
- SmallMap → IterableOps
-
def
iterator(): Iterator[(K, V)]
Iterator can be used only once
Iterator can be used only once
- Definition Classes
- Map1 → IterableOnce
-
def
keySet: Set[K]
Collects all keys of this map in a set.
-
def
keys: collection.Iterable[K]
Collects all keys of this map in an iterable collection.
Collects all keys of this map in an iterable collection.
- returns
the keys of this map as an iterable.
- Definition Classes
- MapOps
-
def
keysIterator(): Iterator[K]
Creates an iterator for all keys.
-
def
knownSize: Int
The number of elements in this collection, if it can be cheaply computed, -1 otherwise.
The number of elements in this collection, if it can be cheaply computed, -1 otherwise. Cheaply usually means: Not requiring a collection traversal.
- returns
The number of elements of this iterable collection if it can be computed in O(1) time, otherwise -1
- Definition Classes
- IterableOps → IterableOnce
-
def
last: (K, V)
Selects the last element.
Selects the last element.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- returns
The last element of this iterable collection.
- Definition Classes
- IterableOps
- Exceptions thrown
NoSuchElementExceptionIf the iterable collection is empty.
-
def
lastOption: Option[(K, V)]
Optionally selects the last element.
Optionally selects the last element.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- returns
the last element of this iterable collection$ if it is nonempty,
Noneif it is empty.
- Definition Classes
- IterableOps
-
def
lift: (K) ⇒ Option[V]
- Definition Classes
- PartialFunction
-
def
map[K2, V2](f: ((K, V)) ⇒ (K2, V2)): Map[K2, V2]
- Definition Classes
- MapOps
-
def
map[B](f: ((K, V)) ⇒ B): Iterable[B]
Builds a new collection by applying a function to all elements of this iterable collection.
Builds a new collection by applying a function to all elements of this iterable collection.
- B
the element type of the returned collection.
- f
the function to apply to each element.
- returns
a new iterable collection resulting from applying the given function
fto each element of this iterable collection and collecting the results.
- Definition Classes
- IterableOps
- def mapFactory: MapFactory[Map]
-
def
mapFromIterable[K2, V2](it: collection.Iterable[(K2, V2)]): Map[K2, V2]
Similar to fromIterable, but returns a Map collection type
-
def
mapValues[W](f: (V) ⇒ W): View[(K, W)]
Transforms this map by applying a function to every retrieved value.
Transforms this map by applying a function to every retrieved value.
- f
the function used to transform values of this map.
- returns
a map view which maps every key of this map to
f(this(key)). The resulting map wraps the original map without copying any elements.
- Definition Classes
- MapOps
-
def
max: (K, V)
[use case] Finds the largest element.
[use case]Finds the largest element.
- returns
the largest element of this immutable map.
- Definition Classes
- IterableOps
Full Signaturedef max[B >: (K, V)](implicit ord: Ordering[B]): (K, V)
-
def
maxBy[B](f: ((K, V)) ⇒ B): (K, V)
[use case] Finds the first element which yields the largest value measured by function f.
[use case]Finds the first element which yields the largest value measured by function f.
- B
The result type of the function f.
- f
The measuring function.
- returns
the first element of this immutable map with the largest value measured by function f.
- Definition Classes
- IterableOps
Full Signaturedef maxBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
-
def
min: (K, V)
[use case] Finds the smallest element.
[use case]Finds the smallest element.
- returns
the smallest element of this immutable map
- Definition Classes
- IterableOps
Full Signaturedef min[B >: (K, V)](implicit ord: Ordering[B]): (K, V)
-
def
minBy[B](f: ((K, V)) ⇒ B): (K, V)
[use case] Finds the first element which yields the smallest value measured by function f.
[use case]Finds the first element which yields the smallest value measured by function f.
- B
The result type of the function f.
- f
The measuring function.
- returns
the first element of this immutable map with the smallest value measured by function f.
- Definition Classes
- IterableOps
Full Signaturedef minBy[B](f: ((K, V)) ⇒ B)(implicit cmp: Ordering[B]): (K, V)
-
def
mkString(start: String, sep: String, end: String): String
A string showing all elements of this collection, separated by string
sep.A string showing all elements of this collection, separated by string
sep.- Definition Classes
- MapOps → IterableOps
-
def
mkString: String
- Definition Classes
- IterableOps
-
def
mkString(sep: String): String
- Definition Classes
- IterableOps
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
newSpecificBuilder(): Builder[(K, V), Map[K, V]]
- returns
a strict builder for the same collection type. Note that in the case of lazy collections (e.g. View or immutable.LazyList), it is possible to implement this method but the resulting
Builderwill break laziness. As a consequence, operations should preferably be implemented on top of views rather than builders.
- Attributes
- protected[this]
- Definition Classes
- SmallMap → IterableOps
-
def
nonEmpty: Boolean
Is the collection not empty?
Is the collection not empty?
- Definition Classes
- IterableOps
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
orElse[A1 <: K, B1 >: V](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
-
def
partition(p: ((K, V)) ⇒ Boolean): (Map[K, V], Map[K, V])
A pair of, first, all elements that satisfy prediacte
pand, second, all elements that do not.A pair of, first, all elements that satisfy prediacte
pand, second, all elements that do not. Interesting because it splits a collection in two.The default implementation provided here needs to traverse the collection twice. Strict collections have an overridden version of
partitioninBuildable, which requires only a single traversal.- Definition Classes
- IterableOps
-
def
product: (K, V)
[use case] Multiplies up the elements of this collection.
[use case]Multiplies up the elements of this collection.
- returns
the product of all elements in this immutable map of numbers of type
Int. Instead ofInt, any other typeTwith an implicitNumeric[T]implementation can be used as element type of the immutable map and as result type ofproduct. Examples of such types are:Long,Float,Double,BigInt.
- Definition Classes
- IterableOps
Full Signaturedef product[B >: (K, V)](implicit num: Numeric[B]): B
-
def
reduce[B >: (K, V)](op: (B, B) ⇒ B): B
Reduces the elements of this iterable collection using the specified associative binary operator.
Reduces the elements of this iterable collection using the specified associative binary operator.
The order in which operations are performed on elements is unspecified and may be nondeterministic.
- B
A type parameter for the binary operator, a supertype of
A.- op
A binary operator that must be associative.
- returns
The result of applying reduce operator
opbetween all the elements if the iterable collection is nonempty.
- Definition Classes
- IterableOps
- Exceptions thrown
UnsupportedOperationExceptionif this iterable collection is empty.
-
def
reduceLeft[B >: (K, V)](op: (B, (K, V)) ⇒ B): B
Applies a binary operator to all elements of this iterable collection, going left to right.
Applies a binary operator to all elements of this iterable collection, going left to right.
Note: will not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.
- B
the result type of the binary operator.
- op
the binary operator.
- returns
the result of inserting
opbetween consecutive elements of this iterable collection, going left to right:op( op( ... op(x_1, x_2) ..., x_{n-1}), x_n)where
x1, ..., xnare the elements of this iterable collection.
- Definition Classes
- IterableOps
- Exceptions thrown
UnsupportedOperationExceptionif this iterable collection is empty.
-
def
reduceLeftOption[B >: (K, V)](op: (B, (K, V)) ⇒ B): Option[B]
Optionally applies a binary operator to all elements of this iterable collection, going left to right.
Optionally applies a binary operator to all elements of this iterable collection, going left to right.
Note: will not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.
- B
the result type of the binary operator.
- op
the binary operator.
- returns
an option value containing the result of
reduceLeft(op)if this iterable collection is nonempty,Noneotherwise.
- Definition Classes
- IterableOps
-
def
reduceOption[B >: (K, V)](op: (B, B) ⇒ B): Option[B]
Reduces the elements of this iterable collection, if any, using the specified associative binary operator.
Reduces the elements of this iterable collection, if any, using the specified associative binary operator.
The order in which operations are performed on elements is unspecified and may be nondeterministic.
- B
A type parameter for the binary operator, a supertype of
A.- op
A binary operator that must be associative.
- returns
An option value containing result of applying reduce operator
opbetween all the elements if the collection is nonempty, andNoneotherwise.
- Definition Classes
- IterableOps
-
def
reduceRight[B >: (K, V)](op: ((K, V), B) ⇒ B): B
Applies a binary operator to all elements of this iterable collection, going right to left.
Applies a binary operator to all elements of this iterable collection, going right to left.
Note: will not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.
- B
the result type of the binary operator.
- op
the binary operator.
- returns
the result of inserting
opbetween consecutive elements of this iterable collection, going right to left:op(x_1, op(x_2, ..., op(x_{n-1}, x_n)...))where
x1, ..., xnare the elements of this iterable collection.
- Definition Classes
- IterableOps
- Exceptions thrown
UnsupportedOperationExceptionif this iterable collection is empty.
-
def
reduceRightOption[B >: (K, V)](op: ((K, V), B) ⇒ B): Option[B]
Optionally applies a binary operator to all elements of this iterable collection, going right to left.
Optionally applies a binary operator to all elements of this iterable collection, going right to left.
Note: will not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered or the operator is associative and commutative.
- B
the result type of the binary operator.
- op
the binary operator.
- returns
an option value containing the result of
reduceRight(op)if this iterable collection is nonempty,Noneotherwise.
- Definition Classes
- IterableOps
-
def
remove(key: K): Map[K, V]
Removes a key from this map, returning a new map.
-
def
removeAll(keys: IterableOnce[K]): Map[K, V]
Creates a new immutable map from this immutable map by removing all elements of another collection.
Creates a new immutable map from this immutable map by removing all elements of another collection.
- keys
the collection containing the removed elements.
- returns
a new immutable map that contains all elements of the current immutable map except one less occurrence of each of the elements of
elems.
- Definition Classes
- MapOps
-
def
reversed: collection.Iterable[(K, V)]
- Attributes
- protected[this]
- Definition Classes
- IterableOps
-
def
runWith[U](action: (V) ⇒ U): (K) ⇒ Boolean
- Definition Classes
- PartialFunction
-
def
scan[B >: (K, V)](z: B)(op: (B, B) ⇒ B): Iterable[B]
Computes a prefix scan of the elements of the collection.
Computes a prefix scan of the elements of the collection.
Note: The neutral element
zmay be applied more than once.- B
element type of the resulting collection
- z
neutral element for the operator
op- op
the associative operator for the scan
- returns
a new iterable collection containing the prefix scan of the elements in this iterable collection
- Definition Classes
- IterableOps
-
def
scanLeft[B](z: B)(op: (B, (K, V)) ⇒ B): Iterable[B]
Produces a collection containing cumulative results of applying the operator going left to right.
Produces a collection containing cumulative results of applying the operator going left to right.
Note: will not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- B
the type of the elements in the resulting collection
- z
the initial value
- op
the binary operator applied to the intermediate result and the element
- returns
collection with intermediate results
- Definition Classes
- IterableOps
-
def
scanRight[B](z: B)(op: ((K, V), B) ⇒ B): Iterable[B]
Produces a collection containing cumulative results of applying the operator going right to left.
Produces a collection containing cumulative results of applying the operator going right to left. The head of the collection is the last cumulative result.
Note: will not terminate for infinite-sized collections.
Note: might return different results for different runs, unless the underlying collection type is ordered.
Example:
List(1, 2, 3, 4).scanRight(0)(_ + _) == List(10, 9, 7, 4, 0)
- B
the type of the elements in the resulting collection
- z
the initial value
- op
the binary operator applied to the intermediate result and the element
- returns
collection with intermediate results
- Definition Classes
- IterableOps
-
def
size: Int
The number of elements in this collection.
The number of elements in this collection. Does not terminate for infinite collections.
- Definition Classes
- Map1 → IterableOps
-
def
slice(from: Int, until: Int): Map[K, V]
Selects an interval of elements.
Selects an interval of elements. The returned collection is made up of all elements
xwhich satisfy the invariant:from <= indexOf(x) < until
Note: might return different results for different runs, unless the underlying collection type is ordered.
- from
the lowest index to include from this iterable collection.
- until
the lowest index to EXCLUDE from this iterable collection.
- returns
a iterable collection containing the elements greater than or equal to index
fromextending up to (but not including) indexuntilof this iterable collection.
- Definition Classes
- IterableOps
-
def
sliding(size: Int, step: Int): Iterator[Map[K, V]]
Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)
Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped.)
- size
the number of elements per group
- step
the distance between the first elements of successive groups
- returns
An iterator producing iterable collections of size
size, except the last element (which may be the only element) will be truncated if there are fewer thansizeelements remaining to be grouped.
- Definition Classes
- IterableOps
- See also
scala.collection.Iterator, method
sliding
-
def
sliding(size: Int): Iterator[Map[K, V]]
Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in
grouped.) The "sliding window" step is set to one.Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in
grouped.) The "sliding window" step is set to one.- size
the number of elements per group
- returns
An iterator producing iterable collections of size
size, except the last element (which may be the only element) will be truncated if there are fewer thansizeelements remaining to be grouped.
- Definition Classes
- IterableOps
- See also
scala.collection.Iterator, method
sliding
-
def
span(p: ((K, V)) ⇒ Boolean): (Map[K, V], Map[K, V])
Splits this iterable collection into a prefix/suffix pair according to a predicate.
Splits this iterable collection into a prefix/suffix pair according to a predicate.
Note:
c span pis equivalent to (but possibly more efficient than)(c takeWhile p, c dropWhile p), provided the evaluation of the predicatepdoes not cause any side-effects.Note: might return different results for different runs, unless the underlying collection type is ordered.
- p
the test predicate
- returns
a pair consisting of the longest prefix of this iterable collection whose elements all satisfy
p, and the rest of this iterable collection.
- Definition Classes
- IterableOps
-
def
splitAt(n: Int): (Map[K, V], Map[K, V])
Splits this iterable collection into two at a given position.
Splits this iterable collection into two at a given position. Note:
c splitAt nis equivalent to (but possibly more efficient than)(c take n, c drop n).Note: might return different results for different runs, unless the underlying collection type is ordered.
- n
the position at which to split.
- returns
a pair of iterable collections consisting of the first
nelements of this iterable collection, and the other elements.
- Definition Classes
- IterableOps
-
def
sum: (K, V)
[use case] Sums up the elements of this collection.
[use case]Sums up the elements of this collection.
- returns
the sum of all elements in this immutable map of numbers of type
Int. Instead ofInt, any other typeTwith an implicitNumeric[T]implementation can be used as element type of the immutable map and as result type ofsum. Examples of such types are:Long,Float,Double,BigInt.
- Definition Classes
- IterableOps
Full Signaturedef sum[B >: (K, V)](implicit num: Numeric[B]): B
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tail: Map[K, V]
The rest of the collection without its first element.
The rest of the collection without its first element.
- Definition Classes
- IterableOps
-
def
take(n: Int): Map[K, V]
A collection containing the first
nelements of this collection.A collection containing the first
nelements of this collection.- Definition Classes
- IterableOps
-
def
takeRight(n: Int): Map[K, V]
A collection containing the last
nelements of this collection.A collection containing the last
nelements of this collection.- Definition Classes
- IterableOps
-
def
takeWhile(p: ((K, V)) ⇒ Boolean): Map[K, V]
Takes longest prefix of elements that satisfy a predicate.
Takes longest prefix of elements that satisfy a predicate.
Note: might return different results for different runs, unless the underlying collection type is ordered.
- p
The predicate used to test elements.
- returns
the longest prefix of this iterable collection whose elements all satisfy the predicate
p.
- Definition Classes
- IterableOps
-
def
to[C1](factory: Factory[(K, V), C1]): C1
Given a collection factory
factory, convert this collection to the appropriate representation for the current element typeA.Given a collection factory
factory, convert this collection to the appropriate representation for the current element typeA. Example uses:xs.to(List) xs.to(ArrayBuffer) xs.to(BitSet) // for xs: Iterable[Int]
- Definition Classes
- IterableOps
-
def
toArray[B >: (K, V)](implicit arg0: ClassTag[B]): Array[B]
Convert collection to array.
Convert collection to array.
- Definition Classes
- IterableOps
-
def
toIndexedSeq: IndexedSeq[(K, V)]
- Definition Classes
- IterableOps
-
final
def
toIterable: Map1.this.type
The collection itself
The collection itself
- returns
This collection as an
Iterable[A]. No new collection will be built ifthisis already anIterable[A].
- Definition Classes
- Iterable → IterableOps
-
def
toList: List[(K, V)]
- Definition Classes
- IterableOps
-
def
toMap[K, V](implicit ev: <:<[(K, V), (K, V)]): Map[K, V]
- Definition Classes
- IterableOps
-
def
toSeq: Seq[(K, V)]
- Definition Classes
- IterableOps
-
def
toSet[B >: (K, V)]: Set[B]
- Definition Classes
- IterableOps
-
def
toString(): String
- Definition Classes
- MapOps → Function1 → IterableOps → AnyRef → Any
-
def
toVector: Vector[(K, V)]
- Definition Classes
- IterableOps
-
def
transpose[B](implicit asIterable: ((K, V)) ⇒ collection.Iterable[B]): Iterable[Iterable[B]]
Transposes this iterable collection of iterable collections into a iterable collection of iterable collections.
Transposes this iterable collection of iterable collections into a iterable collection of iterable collections.
The resulting collection's type will be guided by the static type of iterable collection. For example:
val xs = List( Set(1, 2, 3), Set(4, 5, 6)).transpose // xs == List( // List(1, 4), // List(2, 5), // List(3, 6)) val ys = Vector( List(1, 2, 3), List(4, 5, 6)).transpose // ys == Vector( // Vector(1, 4), // Vector(2, 5), // Vector(3, 6))
- B
the type of the elements of each iterable collection.
- asIterable
an implicit conversion which asserts that the element type of this iterable collection is an
Iterable.- returns
a two-dimensional iterable collection of iterable collections which has as nth row the nth column of this iterable collection.
- Definition Classes
- IterableOps
- Exceptions thrown
IllegalArgumentExceptionif all collections in this iterable collection are not of the same size.
-
def
unzip[A1, A2](implicit asPair: <:<[(K, V), (A1, A2)]): (Iterable[A1], Iterable[A2])
Converts this iterable collection of pairs into two collections of the first and second half of each pair.
Converts this iterable collection of pairs into two collections of the first and second half of each pair.
val xs = Iterable( (1, "one"), (2, "two"), (3, "three")).unzip // xs == (Iterable(1, 2, 3), // Iterable(one, two, three))
- A1
the type of the first half of the element pairs
- A2
the type of the second half of the element pairs
- asPair
an implicit conversion which asserts that the element type of this iterable collection is a pair.
- returns
a pair of iterable collections, containing the first, respectively second half of each element pair of this iterable collection.
- Definition Classes
- IterableOps
-
def
updated(key: K, value: V): Map[K, V]
[use case] Creates a new map obtained by updating this map with a given key/value pair.
-
def
values: collection.Iterable[V]
Collects all values of this map in an iterable collection.
Collects all values of this map in an iterable collection.
- returns
the values of this map as an iterable.
- Definition Classes
- MapOps
-
def
valuesIterator(): Iterator[V]
Creates an iterator for all values in this map.
Creates an iterator for all values in this map.
- returns
an iterator over all values that are associated with some key in this map.
- Definition Classes
- MapOps
-
def
view: View[(K, V)]
A view representing the elements of this collection.
A view representing the elements of this collection.
- Definition Classes
- IterableOps
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withDefault[V1 >: V](d: (K) ⇒ V1): Map[K, V1]
The same map with a given default function.
The same map with a given default function. Note: The default is only used for
apply. Other methods likeget,contains,iterator,keys, etc. are not affected bywithDefault.Invoking transformer methods (e.g.
map) will not preserve the default value.- d
the function mapping keys to values, used for non-present keys
- returns
a wrapper of the map with a default value
- Definition Classes
- Map
-
def
withDefaultValue[V1 >: V](d: V1): Map[K, V1]
The same map with a given default value.
The same map with a given default value. Note: The default is only used for
apply. Other methods likeget,contains,iterator,keys, etc. are not affected bywithDefaultValue.Invoking transformer methods (e.g.
map) will not preserve the default value.- d
default value used for non-present keys
- returns
a wrapper of the map with a default value
- Definition Classes
- Map
-
def
withFilter(p: ((K, V)) ⇒ Boolean): MapWithFilter
Creates a non-strict filter of this map.
Creates a non-strict filter of this map.
Note: the difference between
c filter pandc withFilter pis that the former creates a new collection, whereas the latter only restricts the domain of subsequentmap,flatMap,foreach, andwithFilteroperations.Note: might return different results for different runs, unless the underlying collection type is ordered.
- p
the predicate used to test elements.
- returns
an object of class
WithFilter, which supportsmap,flatMap,foreach, andwithFilteroperations. All these operations apply to those elements of this map which satisfy the predicatep.
- Definition Classes
- MapOps → IterableOps
-
def
zip[B](that: collection.Iterable[B]): Iterable[((K, V), B)]
Returns a iterable collection formed from this iterable collection and another iterable collection by combining corresponding elements in pairs.
Returns a iterable collection formed from this iterable collection and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.
- B
the type of the second half of the returned pairs
- that
The iterable providing the second half of each result pair
- returns
a new iterable collection containing pairs consisting of corresponding elements of this iterable collection and
that. The length of the returned collection is the minimum of the lengths of this iterable collection andthat.
- Definition Classes
- IterableOps
-
def
zipWithIndex: Iterable[((K, V), Int)]
Zips this iterable collection with its indices.
Zips this iterable collection with its indices.
- returns
A new iterable collection containing pairs consisting of all elements of this iterable collection paired with their index. Indices start at
0.
- Definition Classes
- IterableOps
List("a", "b", "c").zipWithIndex == List(("a", 0), ("b", 1), ("c", 2))
Example:
Shadowed Implicit Value Members
-
def
lazyZip[B](that: collection.Iterable[B]): LazyZip2[(K, V), B, Map1[K, V]]
Analogous to
zipexcept that the elements in each collection are not consumed until a strict operation is invoked on the returnedLazyZip2decorator.Analogous to
zipexcept that the elements in each collection are not consumed until a strict operation is invoked on the returnedLazyZip2decorator.Calls to
lazyZipcan be chained to support higher arities (up to 4) without incurring the expense of constructing and deconstructing intermediary tuples.val xs = List(1, 2, 3) val res = (xs lazyZip xs lazyZip xs lazyZip xs).map((a, b, c, d) => a + b + c + d) // res == List(4, 8, 12)
- B
the type of the second element in each eventual pair
- that
the iterable providing the second element of each eventual pair
- returns
a decorator
LazyZip2that allows strict operations to be performed on the lazily evaluated pairs or chained calls tolazyZip. Implicit conversion toIterable[(A, B)]is also supported.
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to LazyZipOps[(K, V), Map1[K, V]] performed by method toLazyZipOps in strawman.collection.Map.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(map1: LazyZipOps[(K, V), Map1[K, V]]).lazyZip(that)
- Definition Classes
- LazyZipOps
-
def
lazyZip[B](that: collection.Iterable[B]): LazyZip2[(K, V), B, Iterable[(K, V)]]
Analogous to
zipexcept that the elements in each collection are not consumed until a strict operation is invoked on the returnedLazyZip2decorator.Analogous to
zipexcept that the elements in each collection are not consumed until a strict operation is invoked on the returnedLazyZip2decorator.Calls to
lazyZipcan be chained to support higher arities (up to 4) without incurring the expense of constructing and deconstructing intermediary tuples.val xs = List(1, 2, 3) val res = (xs lazyZip xs lazyZip xs lazyZip xs).map((a, b, c, d) => a + b + c + d) // res == List(4, 8, 12)
- B
the type of the second element in each eventual pair
- that
the iterable providing the second element of each eventual pair
- returns
a decorator
LazyZip2that allows strict operations to be performed on the lazily evaluated pairs or chained calls tolazyZip. Implicit conversion toIterable[(A, B)]is also supported.
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to LazyZipOps[(K, V), Iterable[(K, V)]] performed by method toLazyZipOps in strawman.collection.Iterable.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(map1: LazyZipOps[(K, V), Iterable[(K, V)]]).lazyZip(that)
- Definition Classes
- LazyZipOps
-
val
this: Map1[K, V]
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to LazyZipOps[(K, V), Map1[K, V]] performed by method toLazyZipOps in strawman.collection.Map.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(map1: LazyZipOps[(K, V), Map1[K, V]]).this
- Definition Classes
- LazyZipOps
-
val
this: Iterable[(K, V)]
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to LazyZipOps[(K, V), Iterable[(K, V)]] performed by method toLazyZipOps in strawman.collection.Iterable.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(map1: LazyZipOps[(K, V), Iterable[(K, V)]]).this
- Definition Classes
- LazyZipOps
Deprecated Value Members
-
final
def
/:[B](z: B)(op: (B, (K, V)) ⇒ B): B
- Definition Classes
- IterableOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
-
final
def
:\[B](z: B)(op: ((K, V), B) ⇒ B): B
- Definition Classes
- IterableOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
-
def
find(p: ((K, V)) ⇒ Boolean): Option[(K, V)]
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).find(p)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator().find instead of .find on IterableOnce
-
def
foreach[U](f: ((K, V)) ⇒ U): Unit
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).foreach(f)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator().foreach(...) instead of .foreach(...) on IterableOnce
-
final
def
hasDefiniteSize: Boolean
- Definition Classes
- IterableOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize
-
def
isEmpty: Boolean
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).isEmpty
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator().isEmpty instead of .isEmpty on IterableOnce
-
def
mkString: String
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).mkString
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce
-
def
mkString(sep: String): String
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).mkString(sep)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce
-
def
mkString(start: String, sep: String, end: String): String
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).mkString(start, sep, end)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce
-
final
def
stringPrefix: String
- Definition Classes
- IterableOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use className instead of stringPrefix
-
def
toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).toArray(arg0)
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ArrayBuffer.fromIterable(it).toArray instead of it.toArray on Iterable (wrap Iterators with View.fromIterator first)
-
def
toBuffer[B >: A]: Buffer[B]
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use ArrayBuffer.fromIterable(it) instead of it.toBuffer on Iterable (wrap Iterators with View.fromIterator first)
-
def
toList[B >: A]: List[B]
- Implicit
- This member is added by an implicit conversion from Map1[K, V] to IterableOnceExtensionMethods[(K, V)] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(map1: IterableOnceExtensionMethods[(K, V)]).toList
- Definition Classes
- IterableOnceExtensionMethods
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use List.fromIterable(it) instead of it.toList on Iterable (wrap Iterators with View.fromIterator first)