SortedSet

@SerialVersionUID(3L) object SortedSet extends Delegate[[A] =>> SortedSet[A]]

This object provides a set of operations to create mutable.Sortedset values.

This object provides a set of operations to create mutable.Sortedset values.

Companion
class
class Delegate[[A] =>> SortedSet[A]]
class Delegate[[A] =>> SortedSet[A], Ordering]
class Object
trait Matchable
class Any

Value members

Inherited methods

override def apply[A](xs: A*)(`evidence$37`: Ev[A]): SortedSet[A]
Definition Classes
Inherited from
Delegate
def empty[A](`evidence$38`: Ev[A]): SortedSet[A]
Inherited from
Delegate
def fill[A](n: Int)(elem: => A)(`evidence$18`: Ev[A]): SortedSet[A]

Produces a collection containing the results of some element computation a number of times.

Produces a collection containing the results of some element computation a number of times.

Value Params
elem

the element computation

n

the number of elements contained in the collection.

Returns

A collection that contains the results of n evaluations of elem.

Inherited from
EvidenceIterableFactory
def from[E](it: IterableOnce[E])(`evidence$39`: Ev[E]): SortedSet[E]
Inherited from
Delegate
def iterate[A](start: A, len: Int)(f: A => A)(`evidence$20`: Ev[A]): SortedSet[A]

Produces a collection containing repeated applications of a function to a start value.

Produces a collection containing repeated applications of a function to a start value.

Value Params
f

the function that's repeatedly applied

len

the number of elements contained in the collection

start

the start value of the collection

Returns

a collection with len values in the sequence start, f(start), f(f(start)), ...

Inherited from
EvidenceIterableFactory
def newBuilder[A](`evidence$40`: Ev[A]): Builder[A, SortedSet[A]]
Inherited from
Delegate
def tabulate[A](n: Int)(f: Int => A)(`evidence$19`: Ev[A]): SortedSet[A]

Produces a collection containing values of a given function over a range of integer values starting from 0.

Produces a collection containing values of a given function over a range of integer values starting from 0.

Value Params
f

The function computing element values

n

The number of elements in the collection

Returns

A collection consisting of elements f(0), ..., f(n -1)

Inherited from
EvidenceIterableFactory
def unfold[A, S](init: S)(f: S => Option[(A, S)])(`evidence$21`: Ev[A]): SortedSet[A]

Produces a collection that uses a function f to produce elements of type A and update an internal state of type S.

Produces a collection that uses a function f to produce elements of type A and update an internal state of type S.

Type Params
A

Type of the elements

S

Type of the internal state

Value Params
f

Computes the next element (or returns None to signal the end of the collection)

init

State initial value

Returns

a collection that produces elements using f until f returns None

Inherited from
EvidenceIterableFactory

Implicits

Inherited implicits

implicit def evidenceIterableFactory[A](`evidence$23`: Ev[A]): Factory[A, SortedSet[A]]