trait SortedMapOps[K, +V, +CC[X, +Y] <: Map[X, Y] with SortedMapOps[X, Y, CC, _], +C <: SortedMapOps[K, V, CC, C]] extends MapOps[K, V, Map, C] with collection.SortedMapOps[K, V, CC, C]
- Alphabetic
- By Inheritance
- SortedMapOps
- SortedMapOps
- SortedOps
- MapOps
- MapOps
- Equals
- PartialFunction
- Function1
- IterableOps
- IterableOnce
- AnyRef
- Any
- by iterableOnceExtensionMethods
- Hide All
- Show All
- Public
- All
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
-
trait
GenKeySortedSet
extends GenKeySet
A generic trait that is reused by sorted keyset implementations
A generic trait that is reused by sorted keyset implementations
- Attributes
- protected
- Definition Classes
- SortedMapOps
-
class
KeySortedSet
extends SortedSet[K] with GenKeySet with GenKeySortedSet
The implementation class of the set returned by
keySetThe implementation class of the set returned by
keySet- Attributes
- protected
- Definition Classes
- SortedMapOps
-
class
SortedMapWithFilter
extends MapWithFilter
Specializes
MapWithFilterfor sorted Map collectionsSpecializes
MapWithFilterfor sorted Map collections- Definition Classes
- SortedMapOps
-
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
-
class
ImmutableKeySortedSet
extends SortedSet[K] with GenKeySet with GenKeySortedSet
The implementation class of the set returned by
keySetThe implementation class of the set returned by
keySet- Attributes
- protected
Abstract Value Members
-
abstract
def
canEqual(that: Any): Boolean
- Definition Classes
- Equals
-
abstract
def
coll: C with CC[K, V]
- returns
This collection as a
C.
- Attributes
- protected[this]
- Definition Classes
- SortedMapOps → MapOps → IterableOps
-
abstract
def
empty: C
The empty map of the same type as this map
The empty map of the same type as this map
- returns
an empty map of type
Repr.
- Definition Classes
- MapOps
-
abstract
def
fromSpecificIterable(coll: collection.Iterable[(K, V)]): C
- Attributes
- protected[this]
- Definition Classes
- IterableOps
-
abstract
def
get(key: K): Option[V]
Optionally returns the value associated with a key.
Optionally returns the value associated with a key.
- key
the key value
- returns
an option value containing the value associated with
keyin this map, orNoneif none exists.
- Definition Classes
- MapOps
-
abstract
def
iterableFactory: IterableFactoryLike[Iterable]
- Definition Classes
- IterableOps
-
abstract
def
iterator(): Iterator[(K, V)]
Iterator can be used only once
Iterator can be used only once
- Definition Classes
- IterableOnce
-
abstract
def
iteratorFrom(start: K): Iterator[(K, V)]
Creates an iterator over all the key/value pairs contained in this map having a key greater than or equal to
startaccording to the ordering of this map.Creates an iterator over all the key/value pairs contained in this map having a key greater than or equal to
startaccording to the ordering of this map. x.iteratorFrom(y) is equivalent to but often more efficient than x.from(y).iterator.- start
The lower bound (inclusive) on the keys to be returned
- Definition Classes
- SortedMapOps
-
abstract
def
keysIteratorFrom(start: K): Iterator[K]
Creates an iterator over all the keys(or elements) contained in this collection greater than or equal to
startaccording to the ordering of this collection.Creates an iterator over all the keys(or elements) contained in this collection greater than or equal to
startaccording to the ordering of this collection. x.keysIteratorFrom(y) is equivalent to but often more efficient than x.from(y).keysIterator.- start
The lower bound (inclusive) on the keys to be returned
- Definition Classes
- SortedMapOps
-
abstract
def
mapFactory: MapFactory[Map]
- Definition Classes
- MapOps
-
abstract
def
newSpecificBuilder(): Builder[(K, V), C]
- 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
- IterableOps
-
implicit abstract
def
ordering: Ordering[K]
- Definition Classes
- SortedOps
-
abstract
def
rangeImpl(from: Option[K], until: Option[K]): C
Creates a ranged projection of this collection.
Creates a ranged projection of this collection. Any mutations in the ranged projection will update this collection and vice versa.
Note: keys are not guaranteed to be consistent between this collection and the projection. This is the case for buffers where indexing is relative to the projection.
- from
The lower-bound (inclusive) of the ranged projection.
Noneif there is no lower bound.- until
The upper-bound (exclusive) of the ranged projection.
Noneif there is no upper bound.
- Definition Classes
- SortedOps
-
abstract
def
remove(key: K): C
Removes a key from this map, returning a new map.
Removes a key from this map, returning a new map.
- key
the key to be removed
- returns
a new map without a binding for key
- Definition Classes
- MapOps
-
abstract
def
sortedMapFactory: SortedMapFactory[CC]
- Definition Classes
- SortedMapOps
-
abstract
def
sortedMapFromIterable[K2, V2](it: collection.Iterable[(K2, V2)])(implicit ordering: Ordering[K2]): CC[K2, V2]
- Attributes
- protected[this]
- Definition Classes
- SortedMapOps
-
abstract
def
toIterable: collection.Iterable[(K, V)]
- returns
This collection as an
Iterable[A]. No new collection will be built ifthisis already anIterable[A].
- Definition Classes
- IterableOps
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+[V1 >: V](kv: (K, V1)): CC[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
- SortedMapOps → MapOps
-
def
++[V2 >: V](xs: collection.Iterable[(K, V2)]): CC[K, V2]
Alias for
concatAlias for
concat- Definition Classes
- SortedMapOps → MapOps
-
final
def
++[K2 >: K, V2 >: V](xs: collection.Iterable[(K2, V2)])(implicit ordering: Ordering[K2]): CC[K2, V2]
Alias for
concatAlias for
concat- Definition Classes
- SortedMapOps
- Annotations
- @inline()
-
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): C
Alias for
removeAlias for
remove- Definition Classes
- MapOps
- Annotations
- @inline()
-
final
def
--(keys: IterableOnce[K]): C
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.
- Definition Classes
- MapOps → Function1
- Annotations
- @throws( ... )
-
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
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
collect[K2, V2](pf: PartialFunction[(K, V), (K2, V2)])(implicit ordering: Ordering[K2]): CC[K2, V2]
- Definition Classes
- SortedMapOps
-
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[V2 >: V](xs: collection.Iterable[(K, V2)]): CC[K, V2]
- Definition Classes
- SortedMapOps → SortedMapOps → MapOps → MapOps
-
def
concat[K2 >: K, V2 >: V](xs: collection.Iterable[(K2, V2)])(implicit ordering: Ordering[K2]): CC[K2, V2]
Returns a new map containing the elements from the left hand operand followed by the elements from the right hand operand.
Returns a new map containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the map is the most specific superclass encompassing the element types of the two operands.
- K2
the type of the keys of the returned map.
- V2
the type of the values of the returned map.
- xs
the traversable to append.
- returns
a new collection of type
CC[K2, V2]which contains all elements of this map followed by all elements ofxs.
- Definition Classes
- SortedMapOps
-
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.
Tests whether this map contains a binding for a key.
- key
the key
- returns
trueif there is a binding forkeyin this map,falseotherwise.
- Definition Classes
- MapOps
-
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): C
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): C
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): C
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
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- 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): C
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): C
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
firstKey: K
Returns the first key of the collection.
Returns the first key of the collection.
- Definition Classes
- SortedMapOps → SortedOps
-
def
flatMap[K2, V2](f: ((K, V)) ⇒ IterableOnce[(K2, V2)])(implicit ordering: Ordering[K2]): CC[K2, V2]
- Definition Classes
- SortedMapOps
-
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
- IterableOps
-
def
from(from: K): C
Creates a ranged projection of this collection with no upper-bound.
Creates a ranged projection of this collection with no upper-bound.
- from
The lower-bound (inclusive) of the ranged projection.
- Definition Classes
- SortedOps
-
def
fromIterable[E](it: collection.Iterable[E]): Iterable[E]
- Attributes
- protected[this]
- Definition Classes
- IterableOps
-
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, C]
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[C]
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
- 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: C
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
keySet: SortedSet[K]
Collects all keys of this map in a set.
Collects all keys of this map in a set.
- returns
a set containing all keys of this map.
- Definition Classes
- SortedMapOps → SortedMapOps → MapOps → MapOps
-
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
lastKey: K
Returns the last key of the collection.
Returns the last key of the collection.
- Definition Classes
- SortedMapOps → SortedOps
-
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))(implicit ordering: Ordering[K2]): CC[K2, V2]
- Definition Classes
- SortedMapOps
-
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
mapFromIterable[K2, V2](it: collection.Iterable[(K2, V2)]): Map[K2, V2]
Similar to fromIterable, but returns a Map collection type
Similar to fromIterable, but returns a Map collection type
- Attributes
- protected
- Definition Classes
- SortedMapOps → MapOps
-
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
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): (C, C)
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
range(from: K, until: K): C
Creates a ranged projection of this collection with both a lower-bound and an upper-bound.
Creates a ranged projection of this collection with both a lower-bound and an upper-bound.
- from
The lower-bound (inclusive) of the ranged projection.
- until
The upper-bound (exclusive) of the ranged projection.
- Definition Classes
- SortedOps
-
def
rangeTo(to: K): C
Create a range projection of this collection with no lower-bound.
Create a range projection of this collection with no lower-bound.
- to
The upper-bound (inclusive) of the ranged projection.
- Definition Classes
- SortedMapOps → SortedOps
-
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
removeAll(keys: IterableOnce[K]): C
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
- IterableOps
-
def
slice(from: Int, until: Int): C
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[C]
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[C]
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): (C, C)
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): (C, C)
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: C
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): C
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): C
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): C
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
-
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
until(until: K): C
Creates a ranged projection of this collection with no lower-bound.
Creates a ranged projection of this collection with no lower-bound.
- until
The upper-bound (exclusive) of the ranged projection.
- Definition Classes
- SortedOps
-
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
-
abstract
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.
[use case]Creates a new map obtained by updating this map with a given key/value pair.
- key
the key
- value
the value
- returns
A new map with the new key/value mapping added to this map.
- Definition Classes
- SortedMapOps → MapOps
Full Signatureabstract def updated[V1 >: V](key: K, value: V1): CC[K, V1]
-
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
valuesIteratorFrom(start: K): Iterator[V]
Creates an iterator over all the values contained in this map that are associated with a key greater than or equal to
startaccording to the ordering of this map.Creates an iterator over all the values contained in this map that are associated with a key greater than or equal to
startaccording to the ordering of this map. x.valuesIteratorFrom(y) is equivalent to but often more efficient than x.from(y).valuesIterator.- start
The lower bound (inclusive) on the keys to be returned
- Definition Classes
- SortedMapOps
-
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
withFilter(p: ((K, V)) ⇒ Boolean): SortedMapWithFilter
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
- SortedMapOps → 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:
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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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 SortedMapOps[K, V, CC, C] 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 SortedMapOps[K, V, CC, C] 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:(sortedMapOps: 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)