StrictOptimizedSortedSetOps
Attributes
- Source
- SortedSet.scala
- Graph
-
- Supertypes
- Known subtypes
Members list
Value members
Inherited methods
Alias for concat
Appends all elements of this collection to a string builder.
Appends all elements of this collection to a string builder. The written text consists of the string representations (w.r.t. the method toString
) of all elements of this collection without any separator string.
Example:
scala> val a = List(1,2,3,4)
a: List[Int] = List(1, 2, 3, 4)
scala> val b = new StringBuilder()
b: StringBuilder =
scala> val h = a.addString(b)
h: StringBuilder = 1234
Value parameters
- b
-
the string builder to which elements are appended.
Attributes
- Returns
-
the string builder
b
to which elements were appended. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Appends all elements of this collection to a string builder using a separator string.
Appends all elements of this collection to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString
) of all elements of this collection, separated by the string sep
.
Example:
scala> val a = List(1,2,3,4)
a: List[Int] = List(1, 2, 3, 4)
scala> val b = new StringBuilder()
b: StringBuilder =
scala> a.addString(b, ", ")
res0: StringBuilder = 1, 2, 3, 4
Value parameters
- b
-
the string builder to which elements are appended.
- sep
-
the separator string.
Attributes
- Returns
-
the string builder
b
to which elements were appended. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Appends all elements of this collection to a string builder using start, end, and separator strings.
Appends all elements of this collection to a string builder using start, end, and separator strings. The written text begins with the string start
and ends with the string end
. Inside, the string representations (w.r.t. the method toString
) of all elements of this collection are separated by the string sep
.
Example:
scala> val a = List(1,2,3,4)
a: List[Int] = List(1, 2, 3, 4)
scala> val b = new StringBuilder()
b: StringBuilder =
scala> a.addString(b , "List(" , ", " , ")")
res5: StringBuilder = List(1, 2, 3, 4)
Value parameters
- b
-
the string builder to which elements are appended.
- end
-
the ending string.
- sep
-
the separator string.
- start
-
the starting string.
Attributes
- Returns
-
the string builder
b
to which elements were appended. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Composes two instances of Function1
in a new Function1
, with this function applied first.
Composes two instances of Function1
in a new Function1
, with this function applied first.
Type parameters
- A
-
the result type of function
g
Value parameters
- g
-
a function R => A
Attributes
- Returns
-
a new function
f
such thatf(x) == g(apply(x))
- Inherited from:
- Function1
- Source
- Function1.scala
Tests if some element is contained in this set.
Tests if some element is contained in this set.
This method is equivalent to contains
. It allows sets to be interpreted as predicates.
Value parameters
- elem
-
the element to test for membership.
Attributes
Builds a new iterable collection by applying a partial function to all elements of this iterable collection on which the function is defined.
Builds a new iterable collection by applying a partial function to all elements of this iterable collection on which the function is defined.
Type parameters
- B
-
the element type of the returned iterable collection.
Value parameters
- pf
-
the partial function which filters and maps the iterable collection.
Attributes
- Returns
-
a new iterable collection resulting from applying the given partial function
pf
to each element on which it is defined and collecting the results. The order of the elements is preserved. - Definition Classes
- Inherited from:
- StrictOptimizedIterableOps
- Source
- StrictOptimizedIterableOps.scala
Builds a new sorted collection by applying a partial function to all elements of this set on which the function is defined.
Builds a new sorted collection by applying a partial function to all elements of this set on which the function is defined.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- pf
-
the partial function which filters and maps the set.
Attributes
- Returns
-
a new set resulting from applying the given partial function
pf
to each element on which it is defined and collecting the results. The order of the elements is preserved. - Definition Classes
- Inherited from:
- StrictOptimizedSortedSetOps
- Source
- StrictOptimizedSortedSetOps.scala
Finds the first element of the collection for which the given partial function is defined, and applies the partial function to it.
Finds the first element of the 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.
Value parameters
- pf
-
the partial function
Attributes
- Returns
-
an option value containing pf applied to the first value for which it is defined, or
None
if none exists. - Example
-
Seq("a", 1, 5L).collectFirst({ case x: Int => x*10 }) = Some(10)
- Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Composes two instances of Function1
in a new Function1
, with this function applied last.
Composes two instances of Function1
in a new Function1
, with this function applied last.
Type parameters
- A
-
the type to which function
g
can be applied
Value parameters
- g
-
a function A => T1
Attributes
- Returns
-
a new function
f
such thatf(x) == apply(g(x))
- Inherited from:
- Function1
- Source
- Function1.scala
Creates a new immutable set by adding all elements contained in another collection to this immutable set, omitting duplicates.
Creates a new immutable set by adding all elements contained in another collection to this immutable set, omitting duplicates.
This method takes a collection of elements and adds all elements, omitting duplicates, into immutable set.
Example:
scala> val a = Set(1, 2) concat Set(2, 3)
a: scala.collection.immutable.Set[Int] = Set(1, 2, 3)
Value parameters
- that
-
the collection containing the elements to add.
Attributes
- Returns
-
a new immutable set with the given elements added, omitting duplicates.
- Definition Classes
- Inherited from:
- StrictOptimizedSetOps
- Source
- Set.scala
Returns a new iterable collection containing the elements from the left hand operand followed by the elements from the right hand operand.
Returns a new iterable collection containing the elements from the left hand operand followed by the elements from the right hand operand. The element type of the iterable collection is the most specific superclass encompassing the element types of the two operands.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- suffix
-
the iterable to append.
Attributes
- Returns
-
a new iterable collection which contains all elements of this iterable collection followed by all elements of
suffix
. - Inherited from:
- IterableOps
- Source
- Iterable.scala
Copy elements to an array, returning the number of elements written.
Copy elements to an array, returning the number of elements written.
Fills the given array xs
starting at index start
with at most len
elements of this collection.
Copying will stop once either all the elements of this collection have been copied, or the end of the array is reached, or len
elements have been copied.
Type parameters
- B
-
the type of the elements of the array.
Value parameters
- len
-
the maximal number of elements to copy.
- start
-
the starting index of xs.
- xs
-
the array to fill.
Attributes
- Returns
-
the number of elements written to the array
- Note
-
Reuse: After calling this method, one should discard the iterator it was called on. Using it is undefined and subject to change.
- Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Copies elements to an array, returning the number of elements written.
Copies elements to an array, returning the number of elements written.
Fills the given array xs
starting at index start
with values of this collection.
Copying will stop once either all the elements of this collection have been copied, or the end of the array is reached.
Type parameters
- B
-
the type of the elements of the array.
Value parameters
- start
-
the starting index of xs.
- xs
-
the array to fill.
Attributes
- Returns
-
the number of elements written to the array
- Note
-
Reuse: After calling this method, one should discard the iterator it was called on. Using it is undefined and subject to change.
- Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Copies elements to an array, returning the number of elements written.
Copies elements to an array, returning the number of elements written.
Fills the given array xs
starting at index start
with values of this collection.
Copying will stop once either all the elements of this collection have been copied, or the end of the array is reached.
Type parameters
- B
-
the type of the elements of the array.
Value parameters
- xs
-
the array to fill.
Attributes
- Returns
-
the number of elements written to the array
- Note
-
Reuse: After calling this method, one should discard the iterator it was called on. Using it is undefined and subject to change.
- Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Tests whether every element of this collection's iterator relates to the corresponding element of another collection by satisfying a test predicate.
Tests whether every element of this collection's iterator relates to the corresponding element of another collection by satisfying a test predicate.
Note: will not terminate for infinite-sized collections.
Type parameters
- B
-
the type of the elements of
that
Value parameters
- p
-
the test predicate, which relates elements from both collections
- that
-
the other collection
Attributes
- Returns
-
true
if both collections have the same length andp(x, y)
istrue
for all corresponding elementsx
of this iterator andy
ofthat
, otherwisefalse
- Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Counts the number of elements in the collection which satisfy a predicate.
Counts the number of elements in the collection which satisfy a predicate.
Note: will not terminate for infinite-sized collections.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
the number of elements satisfying the predicate
p
. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Computes the difference of this set and another set.
Selects all elements except the first n
ones.
Selects all elements except the first n
ones.
Note: might return different results for different runs, unless the underlying collection type is ordered.
Value parameters
- n
-
the number of elements to drop from this iterable collection.
Attributes
- Returns
-
a iterable collection consisting of all elements of this iterable collection except the first
n
ones, or else the empty iterable collection, if this iterable collection has less thann
elements. Ifn
is negative, don't drop any elements. - Inherited from:
- IterableOps
- Source
- Iterable.scala
The rest of the collection without its n
last elements.
The rest of the collection without its n
last elements. For linear, immutable collections this should avoid making a copy.
Note: Even when applied to a view or a lazy collection it will always force the elements.
Attributes
- Definition Classes
- Inherited from:
- StrictOptimizedIterableOps
- Source
- StrictOptimizedIterableOps.scala
Selects all elements except the longest prefix that satisfies a predicate.
Selects all elements except the longest prefix that satisfies a predicate.
The matching prefix starts with the first element of this iterable collection, and the element following the prefix is the first element that does not satisfy the predicate. The matching prefix may be empty, so that this method returns the entire iterable collection.
Example:
scala> List(1, 2, 3, 100, 4).dropWhile(n => n < 10)
val res0: List[Int] = List(100, 4)
scala> List(1, 2, 3, 100, 4).dropWhile(n => n == 0)
val res1: List[Int] = List(1, 2, 3, 100, 4)
Use span to obtain both the prefix and suffix. Use filterNot to drop all elements that satisfy the predicate.
Note: might return different results for different runs, unless the underlying collection type is ordered.
Value parameters
- p
-
The predicate used to test elements.
Attributes
- Returns
-
the longest suffix of this iterable collection whose first element does not satisfy the predicate
p
. - Inherited from:
- IterableOps
- Source
- Iterable.scala
The empty iterable of the same type as this iterable
The empty iterable of the same type as this iterable
Attributes
- Returns
-
an empty iterable of type
C
. - Inherited from:
- IterableOps
- Source
- Iterable.scala
Tests whether a predicate holds for at least one element of this collection.
Tests whether a predicate holds for at least one element of this collection.
Note: may not terminate for infinite-sized collections.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
true
if the given predicatep
is satisfied by at least one element of this collection, otherwisefalse
- Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Selects all elements of this iterable collection which satisfy a predicate.
Selects all elements of this iterable collection which satisfy a predicate.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
a new iterable collection consisting of all elements of this iterable collection that satisfy the given predicate
p
. The order of the elements is preserved. - Definition Classes
- Inherited from:
- StrictOptimizedIterableOps
- Source
- StrictOptimizedIterableOps.scala
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.
Value parameters
- pred
-
the predicate used to test elements.
Attributes
- 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
- Inherited from:
- StrictOptimizedIterableOps
- Source
- StrictOptimizedIterableOps.scala
Finds the first element of the collection satisfying a predicate, if any.
Finds the first element of the 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.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
an option value containing the first element in the collection that satisfies
p
, orNone
if none exists. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Returns the first key of the collection.
Returns the first key of the collection.
Attributes
- Inherited from:
- SortedSetOps
- Source
- SortedSet.scala
Builds a new iterable collection by applying a function to all elements of this iterable collection and using the elements of the resulting collections.
Builds a new iterable collection by applying a function to all elements of this iterable collection and using the elements of the resulting collections.
For example:
def getWords(lines: Seq[String]): Seq[String] = lines flatMap (line => line split "\\W+")
The type of the resulting collection is guided by the static type of iterable collection. This might cause unexpected results sometimes. For example:
// lettersOf will return a Seq[Char] of likely repeated letters, instead of a Set
def lettersOf(words: Seq[String]) = words flatMap (word => word.toSet)
// lettersOf will return a Set[Char], not a Seq
def lettersOf(words: Seq[String]) = words.toSet flatMap ((word: String) => word.toSeq)
// xs will be an Iterable[Int]
val xs = Map("a" -> List(11,111), "b" -> List(22,222)).flatMap(_._2)
// ys will be a Map[Int, Int]
val ys = Map("a" -> List(1 -> 11,1 -> 111), "b" -> List(2 -> 22,2 -> 222)).flatMap(_._2)
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new iterable collection resulting from applying the given collection-valued function
f
to each element of this iterable collection and concatenating the results. - Definition Classes
- Inherited from:
- StrictOptimizedIterableOps
- Source
- StrictOptimizedIterableOps.scala
Builds a new sorted collection by applying a function to all elements of this set and using the elements of the resulting collections.
Builds a new sorted collection by applying a function to all elements of this set and using the elements of the resulting collections.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new set resulting from applying the given collection-valued function
f
to each element of this set and concatenating the results. - Definition Classes
- Inherited from:
- StrictOptimizedSortedSetOps
- Source
- StrictOptimizedSortedSetOps.scala
Converts this iterable collection of iterable collections into a iterable collection formed by the elements of these iterable collections.
Converts this iterable collection of iterable collections into a iterable collection formed by the elements of these iterable collections.
The resulting collection's type will be guided by the type of iterable collection. For example:
val xs = List(
Set(1, 2, 3),
Set(1, 2, 3)
).flatten
// xs == List(1, 2, 3, 1, 2, 3)
val ys = Set(
List(1, 2, 3),
List(3, 2, 1)
).flatten
// ys == Set(1, 2, 3)
Type parameters
- B
-
the type of the elements of each iterable collection.
Value parameters
- asIterable
-
an implicit conversion which asserts that the element type of this iterable collection is an
Iterable
.
Attributes
- Returns
-
a new iterable collection resulting from concatenating all element iterable collections.
- Definition Classes
- Inherited from:
- StrictOptimizedIterableOps
- Source
- StrictOptimizedIterableOps.scala
Applies the given binary operator op
to the given initial value z
and all elements of this collection.
Applies the given binary operator op
to the given initial value z
and all elements of this collection.
For each application of the operator, each operand is either an element of this collection, the initial value, or another such application of the operator.
The order of applications of the operator is unspecified and may be nondeterministic. Each element appears exactly once in the computation. The initial value may be used an arbitrary number of times, but at least once.
If this collection is ordered, then for any application of the operator, the element(s) appearing in the left operand will precede those in the right.
Note: might return different results for different runs, unless either of the following conditions is met: (1) the operator is associative, and the underlying collection type is ordered; or (2) the operator is associative and commutative. In either case, it is also necessary that the initial value be a neutral value for the operator, e.g. Nil
for List
concatenation or 1
for multiplication.
The default implementation in IterableOnce
is equivalent to foldLeft
but may be overridden for more efficient traversal orders.
Note: will not terminate for infinite-sized collections.
Type parameters
- A1
-
The type parameter for the binary operator, a supertype of
A
.
Value parameters
- op
-
A binary operator; must be associative for the result to always be the same across runs.
- z
-
An initial value; may be used an arbitrary number of times in the computation of the result; must be a neutral value for
op
for the result to always be the same across runs.
Attributes
- Returns
-
The result of applying
op
between all the elements andz
, orz
if this collection is empty. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Applies the given binary operator op
to the given initial value z
and all elements of this collection, going left to right.
Applies the given binary operator op
to the given initial value z
and all elements of this collection, going left to right. Returns the initial value if this collection is empty.
"Going left to right" only makes sense if this collection is ordered: then if x1
, x2
, ..., xn
are the elements of this collection, the result is op( op( ... op( op(z, x1), x2) ... ), xn)
.
If this collection is not ordered, then for each application of the operator, each right operand is an element. In addition, the leftmost operand is the initial value, and each other left operand is itself an application of the operator. The elements of this collection and the initial value all appear exactly once in the computation.
Note: might return different results for different runs, unless the underlying collection type is ordered.
Note: will not terminate for infinite-sized collections.
Type parameters
- B
-
The result type of the binary operator.
Value parameters
- op
-
A binary operator.
- z
-
An initial value.
Attributes
- Returns
-
The result of applying
op
toz
and all elements of this collection, going left to right. Returnsz
if this collection is empty. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Applies the given binary operator op
to all elements of this collection and the given initial value z
, going right to left.
Applies the given binary operator op
to all elements of this collection and the given initial value z
, going right to left. Returns the initial value if this collection is empty.
"Going right to left" only makes sense if this collection is ordered: then if x1
, x2
, ..., xn
are the elements of this collection, the result is op(x1, op(x2, op( ... op(xn, z) ... )))
.
If this collection is not ordered, then for each application of the operator, each left operand is an element. In addition, the rightmost operand is the initial value, and each other right operand is itself an application of the operator. The elements of this collection and the initial value all appear exactly once in the computation.
Note: might return different results for different runs, unless the underlying collection type is ordered.
Note: will not terminate for infinite-sized collections.
Type parameters
- B
-
The result type of the binary operator.
Value parameters
- op
-
A binary operator.
- z
-
An initial value.
Attributes
- Returns
-
The result of applying
op
to all elements of this collection andz
, going right to left. Returnsz
if this collection is empty. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Tests whether a predicate holds for all elements of this collection.
Tests whether a predicate holds for all elements of this collection.
Note: may not terminate for infinite-sized collections.
Value parameters
- p
-
the predicate used to test elements.
Attributes
- Returns
-
true
if this collection is empty or the given predicatep
holds for all elements of this collection, otherwisefalse
. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Applies f
to each element for its side effects.
Applies f
to each element for its side effects. Note: U
parameter needed to help scalac's type inference.
Attributes
- Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
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: Even when applied to a view or a lazy collection it will always force the elements.
Type parameters
- K
-
the type of keys returned by the discriminator function.
Value parameters
- f
-
the discriminator function.
Attributes
- 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
k
is bound to a iterable collection of those elementsx
for whichf(x)
equalsk
. - Inherited from:
- IterableOps
- Source
- Iterable.scala
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 type B
using the value
function.
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)
Note: Even when applied to a view or a lazy collection it will always force the elements.
Type parameters
- B
-
the type of values returned by the transformation function
- K
-
the type of keys returned by the discriminator function
Value parameters
- f
-
the element transformation function
- key
-
the discriminator function
Attributes
- Inherited from:
- IterableOps
- Source
- Iterable.scala
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 the f
function and then reduced into a single value with the reduce
function.
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)(_ + _)
Note: Even when applied to a view or a lazy collection it will always force the elements.
Attributes
- Inherited from:
- IterableOps
- Source
- Iterable.scala
Partitions elements in fixed size iterable collections.
Partitions elements in fixed size iterable collections.
Value parameters
- size
-
the number of elements per group
Attributes
- Returns
-
An iterator producing iterable collections of size
size
, except the last will be less than sizesize
if the elements don't divide evenly. - See also
-
scala.collection.Iterator, method
grouped
- Inherited from:
- IterableOps
- Source
- Iterable.scala
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.
Attributes
- Returns
-
the first element of this iterable collection.
- Throws
-
NoSuchElementException if the iterable collection is empty.
- Inherited from:
- IterableOps
- Source
- Iterable.scala
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.
Attributes
- Returns
-
the first element of this iterable collection if it is nonempty,
None
if it is empty. - Inherited from:
- IterableOps
- Source
- Iterable.scala
The initial part of the collection without its last element.
The initial part of the collection without its last element.
Note: Even when applied to a view or a lazy collection it will always force the elements.
Attributes
- Inherited from:
- IterableOps
- Source
- Iterable.scala
Iterates over the inits of this iterable collection.
Iterates over the inits of this iterable collection. The first value will be this iterable collection and the final one will be an empty iterable collection, with the intervening values the results of successive applications of init
.
Note: Even when applied to a view or a lazy collection it will always force the elements.
Attributes
- Returns
-
an iterator over all the inits of this iterable collection
- Example
-
List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)
- Inherited from:
- IterableOps
- Source
- Iterable.scala
Computes the intersection between this set and another set.
Tests whether the collection is empty.
Tests whether the collection is empty.
Note: The default implementation creates and discards an iterator.
Note: Implementations in subclasses that are not repeatedly iterable must take care not to consume any elements when isEmpty
is called.
Attributes
- Returns
-
true
if the collection contains no elements,false
otherwise. - Inherited from:
- IterableOnceOps
- Source
- IterableOnce.scala
Tests whether this iterable collection can be repeatedly traversed.
Tests whether this iterable collection can be repeatedly traversed. Always true for Iterables and false for Iterators unless overridden.
Attributes
- Returns
-
true
if it is repeatedly traversable,false
otherwise. - Definition Classes
- Inherited from:
- IterableOps
- Source
- Iterable.scala
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.
Attributes
- Inherited from:
- IterableOnce
- Source
- IterableOnce.scala
Selects the last element.
Selects the last element.
Note: might return different results for different runs, unless the underlying collection type is ordered.
Attributes
- Returns
-
The last element of this iterable collection.
- Throws
-
NoSuchElementException If the iterable collection is empty.
- Inherited from:
- IterableOps
- Source
- Iterable.scala
Returns the last key of the collection.
Returns the last key of the collection.
Attributes
- Inherited from:
- SortedSetOps
- Source
- SortedSet.scala
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.
Attributes
- Returns
-
the last element of this iterable collection$ if it is nonempty,
None
if it is empty. - Inherited from:
- IterableOps
- Source
- Iterable.scala
Builds a new iterable collection by applying a function to all elements of this iterable collection.
Builds a new iterable collection by applying a function to all elements of this iterable collection.
Type parameters
- B
-
the element type of the returned iterable collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new iterable collection resulting from applying the given function
f
to each element of this iterable collection and collecting the results. - Definition Classes
- Inherited from:
- StrictOptimizedIterableOps
- Source
- StrictOptimizedIterableOps.scala
Builds a new sorted collection by applying a function to all elements of this set.
Builds a new sorted collection by applying a function to all elements of this set.
Type parameters
- B
-
the element type of the returned collection.
Value parameters
- f
-
the function to apply to each element.
Attributes
- Returns
-
a new set resulting from applying the given function
f
to each element of this set and collecting the results. - Definition Classes
- Inherited from:
- StrictOptimizedSortedSetOps
- Source
- StrictOptimizedSortedSetOps.scala
Finds the largest element.
Finds the largest element.
Note: will not terminate for infinite-sized collections.
Type parameters
- B
-
The type over which the ordering is defined.
Value parameters
- ord
-
An ordering to be used for comparing elements.
Attributes
- Returns
-
the largest element of this set with respect to the ordering
ord
. - Throws
-
UnsupportedOperationException if this set is empty.
- Definition Classes
- Inherited from:
- SortedSetOps
- Source
- SortedSet.scala
Find the largest element less than a given key.
Find the largest element less than a given key.
Value parameters
- key
-
The given key.
Attributes
- Returns
-
None
if there is no such node. - Inherited from:
- SortedSetOps
- Source
- SortedSet.scala
Finds the first element which yields the largest value measured by function f
.
Finds the first element which yields the largest value measured by function f
.
Note: will not terminate for infinite-sized collections.
Type parameters
- B
-
The result type of the function
f
.
Value parameters
- cmp
-
An ordering to be used for comparing elements.
- f
-
The measuring function.
Attributes
- Returns
-
the first element of this collection with the largest value measured by function
f
with respect to the orderingcmp
. - Throws
-