Class

eu.shiftforward.apso.Implicits

ApsoSeqTyped

Related Doc: package Implicits

Permalink

implicit final class ApsoSeqTyped[T, CC[X] <: Seq[X]] extends AnyVal

Implicit class that provides new methods for sequences for which their concrete type is important.

T

the type of the elements in the sequence

CC

the concrete type of the sequence

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ApsoSeqTyped
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ApsoSeqTyped(seq: CC[T])

    Permalink

    seq

    the sequence to which the new methods are provided

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  7. def mergeSorted[U >: T, That](it: TraversableOnce[U])(implicit bf: CanBuildFrom[CC[T], U, That], ord: Ordering[U]): That

    Permalink

    Merges this sequence with another traversable assuming that both collections are already sorted.

    Merges this sequence with another traversable assuming that both collections are already sorted. This method eagerly evaluates all the elements of both collections, even if they are lazy collections. For that reason, infinite sequences are not supported.

    U

    element type of the resulting collection

    That

    type of the resulting collection

    it

    the traversable collection to merge with this one

    bf

    combiner factory which provides a combiner

    ord

    the ordering with which the collections are sorted and with which the merged collection is to be returned

    returns

    this sequence merged with the given traversable

  8. val seq: CC[T]

    Permalink

    the sequence to which the new methods are provided

  9. def toString(): String

    Permalink
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped