com.github.marklister.collections.immutable

CollSeq

Related Docs: object CollSeq | package immutable

sealed abstract class CollSeq extends IndexedSeq[Product] with Product

A CollSeq holds 2D typed data. A CollSeq is both an IndexedSeq[Product] and a Product (tuple)

Linear Supertypes
Product, IndexedSeq[Product], IndexedSeqLike[Product, IndexedSeq[Product]], Seq[Product], SeqLike[Product, IndexedSeq[Product]], GenSeq[Product], GenSeqLike[Product, IndexedSeq[Product]], Iterable[Product], IterableLike[Product, IndexedSeq[Product]], Equals, GenIterable[Product], GenIterableLike[Product, IndexedSeq[Product]], Traversable[Product], GenTraversable[Product], GenericTraversableTemplate[Product, IndexedSeq], TraversableLike[Product, IndexedSeq[Product]], GenTraversableLike[Product, IndexedSeq[Product]], Parallelizable[Product, ParSeq[Product]], TraversableOnce[Product], GenTraversableOnce[Product], FilterMonadic[Product, IndexedSeq[Product]], HasNewBuilder[Product, IndexedSeq[Product] @scala.annotation.unchecked.uncheckedVariance], PartialFunction[Int, Product], (Int) ⇒ Product, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CollSeq
  2. Product
  3. IndexedSeq
  4. IndexedSeqLike
  5. Seq
  6. SeqLike
  7. GenSeq
  8. GenSeqLike
  9. Iterable
  10. IterableLike
  11. Equals
  12. GenIterable
  13. GenIterableLike
  14. Traversable
  15. GenTraversable
  16. GenericTraversableTemplate
  17. TraversableLike
  18. GenTraversableLike
  19. Parallelizable
  20. TraversableOnce
  21. GenTraversableOnce
  22. FilterMonadic
  23. HasNewBuilder
  24. PartialFunction
  25. Function1
  26. AnyRef
  27. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by MonadOps
  3. by SeqToCollSeqTc
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  8. by alternateImplicit
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable

    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = IndexedSeq[Product]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def apply(idx: Int): Product

    Definition Classes
    SeqLike → GenSeqLike
  2. abstract def length: Int

    Definition Classes
    SeqLike → GenSeqLike
  3. abstract def productArity: Int

    Definition Classes
    Product
  4. abstract def productElement(n: Int): Any

    Definition Classes
    Product

Concrete Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from CollSeq to any2stringadd[CollSeq] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: Product, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  5. def ++:[B >: Product, That](that: Traversable[B])(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike
  6. def ++:[B >: Product, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike
  7. def +:[B >: Product, That](elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  8. def ->[B](y: B): (CollSeq, B)

    Implicit information
    This member is added by an implicit conversion from CollSeq to ArrowAssoc[CollSeq] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  9. def /:[B](z: B)(op: (B, Product) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  10. def :+[B >: Product, That](elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  11. def :\[B](z: B)(op: (Product, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  12. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  14. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  15. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  16. def aggregate[B](z: ⇒ B)(seqop: (B, Product) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  17. def andThen[C](k: (Product) ⇒ C): PartialFunction[Int, C]

    Definition Classes
    PartialFunction → Function1
  18. def applyOrElse[A1 <: Int, B1 >: Product](x: A1, default: (A1) ⇒ B1): B1

    Definition Classes
    PartialFunction
  19. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  20. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  21. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def collect[B, That](pf: PartialFunction[Product, B])(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  23. def collectFirst[B](pf: PartialFunction[Product, B]): Option[B]

    Definition Classes
    TraversableOnce
  24. def combinations(n: Int): Iterator[IndexedSeq[Product]]

    Definition Classes
    SeqLike
  25. def companion: GenericCompanion[IndexedSeq]

    Definition Classes
    IndexedSeq → Seq → GenSeq → Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  26. def compose[A](g: (A) ⇒ Int): (A) ⇒ Product

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  27. def contains[A1 >: Product](elem: A1): Boolean

    Definition Classes
    SeqLike
  28. def containsSlice[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike
  29. def copyToArray[B >: Product](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  30. def copyToArray[B >: Product](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  31. def copyToArray[B >: Product](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  32. def copyToBuffer[B >: Product](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  33. def corresponds[B](that: GenSeq[B])(p: (Product, B) ⇒ Boolean): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  34. def count(p: (Product) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  35. def diff[B >: Product](that: GenSeq[B]): IndexedSeq[Product]

    Definition Classes
    SeqLike → GenSeqLike
  36. def distinct: IndexedSeq[Product]

    Definition Classes
    SeqLike → GenSeqLike
  37. def drop(n: Int): IndexedSeq[Product]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  38. def dropRight(n: Int): IndexedSeq[Product]

    Definition Classes
    IterableLike
  39. def dropWhile(p: (Product) ⇒ Boolean): IndexedSeq[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  40. def endsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  41. def ensuring(cond: (CollSeq) ⇒ Boolean, msg: ⇒ Any): CollSeq

    Implicit information
    This member is added by an implicit conversion from CollSeq to Ensuring[CollSeq] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  42. def ensuring(cond: (CollSeq) ⇒ Boolean): CollSeq

    Implicit information
    This member is added by an implicit conversion from CollSeq to Ensuring[CollSeq] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  43. def ensuring(cond: Boolean, msg: ⇒ Any): CollSeq

    Implicit information
    This member is added by an implicit conversion from CollSeq to Ensuring[CollSeq] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  44. def ensuring(cond: Boolean): CollSeq

    Implicit information
    This member is added by an implicit conversion from CollSeq to Ensuring[CollSeq] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  45. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  46. def equals(that: Any): Boolean

    Definition Classes
    GenSeqLike → Equals → Any
  47. def exists(p: (Product) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def filter(p: (Product) ⇒ Boolean): IndexedSeq[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  49. def filterNot(p: (Product) ⇒ Boolean): IndexedSeq[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  50. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  51. def find(p: (Product) ⇒ Boolean): Option[Product]

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  52. def flatMap[B, That](f: (Product) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  53. def flatZip[B](that: GenIterable[B])(implicit bf: CanBuildFrom[CollSeq1[Product], (Product, B), CollSeq2[Product, B]]): CollSeq2[Product, B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    Definition Classes
    CollSeq1
  54. def flatten[B](implicit asTraversable: (Product) ⇒ GenTraversableOnce[B]): IndexedSeq[B]

    Definition Classes
    GenericTraversableTemplate
  55. def fold[A1 >: Product](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  56. def foldLeft[B](z: B)(op: (B, Product) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  57. def foldRight[B](z: B)(op: (Product, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  58. def forall(p: (Product) ⇒ Boolean): Boolean

    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  59. def foreach[U](f: (Product) ⇒ U): Unit

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  60. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from CollSeq to StringFormat[CollSeq] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  61. def genericBuilder[B]: Builder[B, IndexedSeq[B]]

    Definition Classes
    GenericTraversableTemplate
  62. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  63. def groupBy[K](f: (Product) ⇒ K): Map[K, IndexedSeq[Product]]

    Definition Classes
    TraversableLike → GenTraversableLike
  64. def grouped(size: Int): Iterator[IndexedSeq[Product]]

    Definition Classes
    IterableLike
  65. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  66. def hashCode(): Int

    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  67. def head: Product

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  68. def headOption: Option[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  69. def indexOf[B >: Product](elem: B, from: Int): Int

    Definition Classes
    GenSeqLike
  70. def indexOf[B >: Product](elem: B): Int

    Definition Classes
    GenSeqLike
  71. def indexOfSlice[B >: Product](that: GenSeq[B], from: Int): Int

    Definition Classes
    SeqLike
  72. def indexOfSlice[B >: Product](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  73. def indexWhere(p: (Product) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  74. def indexWhere(p: (Product) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  75. def indices: Range

    Definition Classes
    SeqLike
  76. def init: IndexedSeq[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  77. def inits: Iterator[IndexedSeq[Product]]

    Definition Classes
    TraversableLike
  78. def intersect[B >: Product](that: GenSeq[B]): IndexedSeq[Product]

    Definition Classes
    SeqLike → GenSeqLike
  79. def isDefinedAt(idx: Int): Boolean

    Definition Classes
    GenSeqLike
  80. def isEmpty: Boolean

    Definition Classes
    SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  81. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  82. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  83. def iterator: Iterator[Product]

    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  84. def last: Product

    Definition Classes
    TraversableLike → GenTraversableLike
  85. def lastIndexOf[B >: Product](elem: B, end: Int): Int

    Definition Classes
    GenSeqLike
  86. def lastIndexOf[B >: Product](elem: B): Int

    Definition Classes
    GenSeqLike
  87. def lastIndexOfSlice[B >: Product](that: GenSeq[B], end: Int): Int

    Definition Classes
    SeqLike
  88. def lastIndexOfSlice[B >: Product](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  89. def lastIndexWhere(p: (Product) ⇒ Boolean, end: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  90. def lastIndexWhere(p: (Product) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  91. def lastOption: Option[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  92. def lengthCompare(len: Int): Int

    Definition Classes
    SeqLike
  93. def lift: (Int) ⇒ Option[Product]

    Definition Classes
    PartialFunction
  94. def map[B, That](f: (Product) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  95. def max[B >: Product](implicit cmp: Ordering[B]): Product

    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def maxBy[B](f: (Product) ⇒ B)(implicit cmp: Ordering[B]): Product

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def min[B >: Product](implicit cmp: Ordering[B]): Product

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def minBy[B](f: (Product) ⇒ B)(implicit cmp: Ordering[B]): Product

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  102. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  103. def newBuilder: Builder[Product, IndexedSeq[Product]]

    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  104. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. final def notify(): Unit

    Definition Classes
    AnyRef
  106. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  107. def orElse[A1 <: Int, B1 >: Product](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Definition Classes
    PartialFunction
  108. def padTo[B >: Product, That](len: Int, elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  109. def par: ParSeq[Product]

    Definition Classes
    Parallelizable
  110. def parCombiner: Combiner[Product, ParSeq[Product]]

    Attributes
    protected[this]
    Definition Classes
    SeqLike → TraversableLike → Parallelizable
  111. def partition(p: (Product) ⇒ Boolean): (IndexedSeq[Product], IndexedSeq[Product])

    Definition Classes
    TraversableLike → GenTraversableLike
  112. def patch[B >: Product, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  113. def permutations: Iterator[IndexedSeq[Product]]

    Definition Classes
    SeqLike
  114. def prefixLength(p: (Product) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  115. def product[B >: Product](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def productIterator: Iterator[Seq[Any]]

    Definition Classes
    CollSeq → Product
  117. def productPrefix: String

    Definition Classes
    Product
  118. def reduce[A1 >: Product](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  119. def reduceLeft[B >: Product](op: (B, Product) ⇒ B): B

    Definition Classes
    TraversableOnce
  120. def reduceLeftOption[B >: Product](op: (B, Product) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def reduceOption[A1 >: Product](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def reduceRight[B >: Product](op: (Product, B) ⇒ B): B

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  123. def reduceRightOption[B >: Product](op: (Product, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def repr: IndexedSeq[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  125. def reverse: IndexedSeq[Product]

    Definition Classes
    SeqLike → GenSeqLike
  126. def reverseIterator: Iterator[Product]

    Definition Classes
    SeqLike
  127. def reverseMap[B, That](f: (Product) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  128. def reversed: List[Product]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  129. def runWith[U](action: (Product) ⇒ U): (Int) ⇒ Boolean

    Definition Classes
    PartialFunction
  130. def sameElements[B >: Product](that: GenIterable[B]): Boolean

    Definition Classes
    IterableLike → GenIterableLike
  131. def scan[B >: Product, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  132. def scanLeft[B, That](z: B)(op: (B, Product) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  133. def scanRight[B, That](z: B)(op: (Product, B) ⇒ B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  134. def segmentLength(p: (Product) ⇒ Boolean, from: Int): Int

    Definition Classes
    SeqLike → GenSeqLike
  135. def seq: IndexedSeq[Product]

    Definition Classes
    IndexedSeq → IndexedSeqLike → Seq → GenSeq → GenSeqLike → Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  136. def size: Int

    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  137. def slice(from: Int, until: Int): IndexedSeq[Product]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  138. def sliding(size: Int, step: Int): Iterator[IndexedSeq[Product]]

    Definition Classes
    IterableLike
  139. def sliding(size: Int): Iterator[IndexedSeq[Product]]

    Definition Classes
    IterableLike
  140. def sortBy[B](f: (Product) ⇒ B)(implicit ord: Ordering[B]): IndexedSeq[Product]

    Definition Classes
    SeqLike
  141. def sortWith(lt: (Product, Product) ⇒ Boolean): IndexedSeq[Product]

    Definition Classes
    SeqLike
  142. def sorted[B >: Product](implicit ord: Ordering[B]): IndexedSeq[Product]

    Definition Classes
    SeqLike
  143. def span(p: (Product) ⇒ Boolean): (IndexedSeq[Product], IndexedSeq[Product])

    Definition Classes
    TraversableLike → GenTraversableLike
  144. def splitAt(n: Int): (IndexedSeq[Product], IndexedSeq[Product])

    Definition Classes
    TraversableLike → GenTraversableLike
  145. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  146. def startsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    GenSeqLike
  147. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  148. def sum[B >: Product](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  149. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  150. def tail: IndexedSeq[Product]

    Definition Classes
    TraversableLike → GenTraversableLike
  151. def tails: Iterator[IndexedSeq[Product]]

    Definition Classes
    TraversableLike
  152. def take(n: Int): IndexedSeq[Product]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  153. def takeRight(n: Int): IndexedSeq[Product]

    Definition Classes
    IterableLike
  154. def takeWhile(p: (Product) ⇒ Boolean): IndexedSeq[Product]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  155. def thisCollection: IndexedSeq[Product]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  156. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Product, Col[Product]]): Col[Product]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  157. def toArray[B >: Product](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  158. def toBuffer[A1 >: Product]: Buffer[A1]

    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  159. def toCollection(repr: IndexedSeq[Product]): IndexedSeq[Product]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  160. def toIndexedSeq: IndexedSeq[Product]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. def toIterable: Iterable[Product]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  162. def toIterator: Iterator[Product]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  163. def toList: List[Product]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  164. def toMap[T, U](implicit ev: <:<[Product, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def toParArray: ParArray[T]

    Implicit information
    This member is added by an implicit conversion from CollSeq to CollectionsHaveToParArray[CollSeq, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (CollSeq) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  166. def toSeq: Seq[Product]

    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  167. def toSet[B >: Product]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def toStream: Stream[Product]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  169. def toString(): String

    Definition Classes
    CollSeq → SeqLike → TraversableLike → Function1 → AnyRef → Any
  170. def toTraversable: Traversable[Product]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  171. def toVector: Vector[Product]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  172. def transpose[B](implicit asTraversable: (Product) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]

    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  173. val underlying: Seq[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    Definition Classes
    CollSeq1
  174. def union[B >: Product, That](that: GenSeq[B])(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  175. def unzip[A1, A2](implicit asPair: (Product) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])

    Definition Classes
    GenericTraversableTemplate
  176. def unzip3[A1, A2, A3](implicit asTriple: (Product) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])

    Definition Classes
    GenericTraversableTemplate
  177. def updated[B >: Product, That](index: Int, elem: B)(implicit bf: CanBuildFrom[IndexedSeq[Product], B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  178. def view(from: Int, until: Int): SeqView[Product, IndexedSeq[Product]]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  179. def view: SeqView[Product, IndexedSeq[Product]]

    Definition Classes
    SeqLike → IterableLike → TraversableLike
  180. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  181. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  182. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  183. def withFilter(p: (Product) ⇒ Boolean): FilterMonadic[Product, IndexedSeq[Product]]

    Definition Classes
    TraversableLike → FilterMonadic
  184. def zip[A1 >: Product, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[IndexedSeq[Product], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  185. def zipAll[B, A1 >: Product, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[IndexedSeq[Product], (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  186. def zipWithIndex[A1 >: Product, That](implicit bf: CanBuildFrom[IndexedSeq[Product], (A1, Int), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  187. def [B](y: B): (CollSeq, B)

    Implicit information
    This member is added by an implicit conversion from CollSeq to ArrowAssoc[CollSeq] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def ++[B >: Product, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).++(that)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  2. def ++:[B >: Product, That](that: Traversable[B])(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).++:(that)(bf)
    Definition Classes
    TraversableLike
  3. def ++:[B >: Product, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).++:(that)(bf)
    Definition Classes
    TraversableLike
  4. def +:[B >: Product, That](elem: B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).+:(elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  5. def /:[B](z: B)(op: (B, Product1[Product]) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product])./:(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  6. def :+[B >: Product, That](elem: B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).:+(elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  7. def :\[B](z: B)(op: (Product1[Product], B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).:\(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  8. def addString(b: StringBuilder): StringBuilder

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).addString(b)
    Definition Classes
    TraversableOnce
  9. def addString(b: StringBuilder, sep: String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).addString(b, sep)
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  11. def aggregate[B](z: ⇒ B)(seqop: (B, Product1[Product]) ⇒ B, combop: (B, B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).aggregate(z)(seqop, combop)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  12. def andThen[C](k: (Product1[Product]) ⇒ C): PartialFunction[Int, C]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).andThen(k)
    Definition Classes
    PartialFunction → Function1
  13. def apply(idx: Int): Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).apply(idx)
    Definition Classes
    CollSeq1 → SeqLike → GenSeqLike → Function1
  14. def applyOrElse[A1 <: Int, B1 >: Product](x: A1, default: (A1) ⇒ B1): B1

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).applyOrElse(x, default)
    Definition Classes
    PartialFunction
  15. def canEqual(that: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  16. def collect[B, That](pf: PartialFunction[Product1[Product], B])(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).collect(pf)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  17. def collectFirst[B](pf: PartialFunction[Product1[Product], B]): Option[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).collectFirst(pf)
    Definition Classes
    TraversableOnce
  18. def combinations(n: Int): Iterator[CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).combinations(n)
    Definition Classes
    SeqLike
  19. def companion: GenericCompanion[IndexedSeq]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).companion
    Definition Classes
    IndexedSeq → Seq → GenSeq → Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  20. def compose[A](g: (A) ⇒ Int): (A) ⇒ Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).compose(g)
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  21. def contains[A1 >: Product](elem: A1): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).contains(elem)
    Definition Classes
    SeqLike
  22. def containsSlice[B](that: GenSeq[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).containsSlice(that)
    Definition Classes
    SeqLike
  23. def copyToArray[B >: Product](xs: Array[B], start: Int, len: Int): Unit

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).copyToArray(xs, start, len)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  24. def copyToArray[B >: Product](xs: Array[B]): Unit

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).copyToArray(xs)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  25. def copyToArray[B >: Product](xs: Array[B], start: Int): Unit

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).copyToArray(xs, start)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  26. def copyToBuffer[B >: Product](dest: Buffer[B]): Unit

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).copyToBuffer(dest)
    Definition Classes
    TraversableOnce
  27. def corresponds[B](that: GenSeq[B])(p: (Product1[Product], B) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).corresponds(that)(p)
    Definition Classes
    SeqLike → GenSeqLike
  28. def count(p: (Product1[Product]) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).count(p)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  29. def diff[B >: Product](that: GenSeq[B]): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).diff(that)
    Definition Classes
    SeqLike → GenSeqLike
  30. def distinct: CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).distinct
    Definition Classes
    SeqLike → GenSeqLike
  31. def drop(n: Int): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).drop(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  32. def dropRight(n: Int): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).dropRight(n)
    Definition Classes
    IterableLike
  33. def dropWhile(p: (Product1[Product]) ⇒ Boolean): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).dropWhile(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  34. def endsWith[B](that: GenSeq[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).endsWith(that)
    Definition Classes
    SeqLike → GenSeqLike
  35. def equals(that: Any): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).equals(that)
    Definition Classes
    GenSeqLike → Equals → Any
  36. def exists(p: (Product1[Product]) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).exists(p)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  37. def filter(p: (Product) ⇒ Boolean): TraversableOnce[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to MonadOps[Product] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (collSeq: MonadOps[Product]).filter(p)
    Definition Classes
    MonadOps
  38. def filter(p: (Product1[Product]) ⇒ Boolean): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).filter(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  39. def filterNot(p: (Product1[Product]) ⇒ Boolean): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).filterNot(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def find(p: (Product1[Product]) ⇒ Boolean): Option[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).find(p)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  41. def flatMap[B](f: (Product) ⇒ GenTraversableOnce[B]): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to MonadOps[Product] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (collSeq: MonadOps[Product]).flatMap(f)
    Definition Classes
    MonadOps
  42. def flatMap[B, That](f: (Product1[Product]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).flatMap(f)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  43. def flatten[B](implicit asTraversable: (Product1[Product]) ⇒ GenTraversableOnce[B]): IndexedSeq[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).flatten(asTraversable)
    Definition Classes
    GenericTraversableTemplate
  44. def fold[A1 >: Product](z: A1)(op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).fold(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  45. def foldLeft[B](z: B)(op: (B, Product1[Product]) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).foldLeft(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def foldRight[B](z: B)(op: (Product1[Product], B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).foldRight(z)(op)
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  47. def forall(p: (Product1[Product]) ⇒ Boolean): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).forall(p)
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def foreach[U](f: (Product1[Product]) ⇒ U): Unit

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).foreach(f)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  49. def genericBuilder[B]: Builder[B, IndexedSeq[B]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  50. def groupBy[K](f: (Product1[Product]) ⇒ K): Map[K, CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).groupBy(f)
    Definition Classes
    TraversableLike → GenTraversableLike
  51. def grouped(size: Int): Iterator[CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).grouped(size)
    Definition Classes
    IterableLike
  52. def hasDefiniteSize: Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).hasDefiniteSize
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  53. def hashCode(): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).hashCode()
    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  54. def head: Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).head
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  55. def headOption: Option[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).headOption
    Definition Classes
    TraversableLike → GenTraversableLike
  56. def indexOf[B >: Product](elem: B, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).indexOf(elem, from)
    Definition Classes
    GenSeqLike
  57. def indexOf[B >: Product](elem: B): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).indexOf(elem)
    Definition Classes
    GenSeqLike
  58. def indexOfSlice[B >: Product](that: GenSeq[B], from: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).indexOfSlice(that, from)
    Definition Classes
    SeqLike
  59. def indexOfSlice[B >: Product](that: GenSeq[B]): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).indexOfSlice(that)
    Definition Classes
    SeqLike
  60. def indexWhere(p: (Product1[Product]) ⇒ Boolean, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).indexWhere(p, from)
    Definition Classes
    SeqLike → GenSeqLike
  61. def indexWhere(p: (Product1[Product]) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).indexWhere(p)
    Definition Classes
    GenSeqLike
  62. def indices: Range

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).indices
    Definition Classes
    SeqLike
  63. def init: CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).init
    Definition Classes
    TraversableLike → GenTraversableLike
  64. def inits: Iterator[CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).inits
    Definition Classes
    TraversableLike
  65. def intersect[B >: Product](that: GenSeq[B]): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).intersect(that)
    Definition Classes
    SeqLike → GenSeqLike
  66. def isDefinedAt(idx: Int): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  67. def isEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).isEmpty
    Definition Classes
    SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  68. final def isTraversableAgain: Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  69. def iterator: Iterator[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).iterator
    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  70. def last: Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).last
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def lastIndexOf[B >: Product](elem: B, end: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lastIndexOf(elem, end)
    Definition Classes
    GenSeqLike
  72. def lastIndexOf[B >: Product](elem: B): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lastIndexOf(elem)
    Definition Classes
    GenSeqLike
  73. def lastIndexOfSlice[B >: Product](that: GenSeq[B], end: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lastIndexOfSlice(that, end)
    Definition Classes
    SeqLike
  74. def lastIndexOfSlice[B >: Product](that: GenSeq[B]): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lastIndexOfSlice(that)
    Definition Classes
    SeqLike
  75. def lastIndexWhere(p: (Product1[Product]) ⇒ Boolean, end: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lastIndexWhere(p, end)
    Definition Classes
    SeqLike → GenSeqLike
  76. def lastIndexWhere(p: (Product1[Product]) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lastIndexWhere(p)
    Definition Classes
    GenSeqLike
  77. def lastOption: Option[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lastOption
    Definition Classes
    TraversableLike → GenTraversableLike
  78. lazy val length: Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).length
    Definition Classes
    CollSeq1 → SeqLike → GenSeqLike
  79. def lengthCompare(len: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lengthCompare(len)
    Definition Classes
    SeqLike
  80. def lift: (Int) ⇒ Option[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).lift
    Definition Classes
    PartialFunction
  81. def map[B](f: (Product) ⇒ B): TraversableOnce[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to MonadOps[Product] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (collSeq: MonadOps[Product]).map(f)
    Definition Classes
    MonadOps
  82. def map[B, That](f: (Product1[Product]) ⇒ B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).map(f)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  83. def max[B >: Product](implicit cmp: Ordering[B]): Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).max(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  84. def maxBy[B](f: (Product1[Product]) ⇒ B)(implicit cmp: Ordering[B]): Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).maxBy(f)(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. def min[B >: Product](implicit cmp: Ordering[B]): Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).min(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  86. def minBy[B](f: (Product1[Product]) ⇒ B)(implicit cmp: Ordering[B]): Product1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).minBy(f)(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  87. def mkString: String

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def mkString(sep: String): String

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).mkString(sep)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def mkString(start: String, sep: String, end: String): String

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def nonEmpty: Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).nonEmpty
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def orElse[A1 <: Int, B1 >: Product](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).orElse(that)
    Definition Classes
    PartialFunction
  92. def padTo[B >: Product, That](len: Int, elem: B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).padTo(len, elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  93. def par: ParSeq[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).par
    Definition Classes
    Parallelizable
  94. def partition(p: (Product1[Product]) ⇒ Boolean): (CollSeq1[Product], CollSeq1[Product])

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).partition(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def patch[B >: Product, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).patch(from, patch, replaced)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  96. def permutations: Iterator[CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).permutations
    Definition Classes
    SeqLike
  97. def prefixLength(p: (Product1[Product]) ⇒ Boolean): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).prefixLength(p)
    Definition Classes
    GenSeqLike
  98. def product[B >: Product](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).product(num)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def productArity: Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).productArity
    Definition Classes
    Product1 → Product
  100. def productElement(n: Int): Seq[Any]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).productElement(n)
    Definition Classes
    CollSeq1 → Product1 → Product
  101. def productIterator: Iterator[Seq[Any]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).productIterator
    Definition Classes
    CollSeq → Product
  102. def productPrefix: String

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).productPrefix
    Definition Classes
    Product
  103. def reduce[A1 >: Product](op: (A1, A1) ⇒ A1): A1

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reduce(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def reduceLeft[B >: Product](op: (B, Product1[Product]) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reduceLeft(op)
    Definition Classes
    TraversableOnce
  105. def reduceLeftOption[B >: Product](op: (B, Product1[Product]) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reduceLeftOption(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def reduceOption[A1 >: Product](op: (A1, A1) ⇒ A1): Option[A1]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reduceOption(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def reduceRight[B >: Product](op: (Product1[Product], B) ⇒ B): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reduceRight(op)
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  108. def reduceRightOption[B >: Product](op: (Product1[Product], B) ⇒ B): Option[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reduceRightOption(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. def repr: CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).repr
    Definition Classes
    TraversableLike → GenTraversableLike
  110. def reverse: CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reverse
    Definition Classes
    SeqLike → GenSeqLike
  111. def reverseIterator: Iterator[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reverseIterator
    Definition Classes
    SeqLike
  112. def reverseMap[B, That](f: (Product1[Product]) ⇒ B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).reverseMap(f)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  113. def runWith[U](action: (Product1[Product]) ⇒ U): (Int) ⇒ Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).runWith(action)
    Definition Classes
    PartialFunction
  114. def sameElements[B >: Product](that: GenIterable[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).sameElements(that)
    Definition Classes
    IterableLike → GenIterableLike
  115. def scan[B >: Product, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).scan(z)(op)(cbf)
    Definition Classes
    TraversableLike → GenTraversableLike
  116. def scanLeft[B, That](z: B)(op: (B, Product1[Product]) ⇒ B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).scanLeft(z)(op)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def scanRight[B, That](z: B)(op: (Product1[Product], B) ⇒ B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).scanRight(z)(op)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  118. def segmentLength(p: (Product1[Product]) ⇒ Boolean, from: Int): Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).segmentLength(p, from)
    Definition Classes
    SeqLike → GenSeqLike
  119. def seq: IndexedSeq[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).seq
    Definition Classes
    IndexedSeq → IndexedSeqLike → Seq → GenSeq → GenSeqLike → Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  120. def size: Int

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).size
    Definition Classes
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  121. def slice(from: Int, until: Int): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).slice(from, until)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  122. def sliding(size: Int, step: Int): Iterator[CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).sliding(size, step)
    Definition Classes
    IterableLike
  123. def sliding(size: Int): Iterator[CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).sliding(size)
    Definition Classes
    IterableLike
  124. def sortBy[B](f: (Product1[Product]) ⇒ B)(implicit ord: Ordering[B]): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).sortBy(f)(ord)
    Definition Classes
    SeqLike
  125. def sortWith(lt: (Product1[Product], Product1[Product]) ⇒ Boolean): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).sortWith(lt)
    Definition Classes
    SeqLike
  126. def sorted[B >: Product](implicit ord: Ordering[B]): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).sorted(ord)
    Definition Classes
    SeqLike
  127. def span(p: (Product1[Product]) ⇒ Boolean): (CollSeq1[Product], CollSeq1[Product])

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).span(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  128. def splitAt(n: Int): (CollSeq1[Product], CollSeq1[Product])

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).splitAt(n)
    Definition Classes
    TraversableLike → GenTraversableLike
  129. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).startsWith(that, offset)
    Definition Classes
    SeqLike → GenSeqLike
  130. def startsWith[B](that: GenSeq[B]): Boolean

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).startsWith(that)
    Definition Classes
    GenSeqLike
  131. def stringPrefix: String

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).stringPrefix
    Definition Classes
    TraversableLike → GenTraversableLike
  132. def sum[B >: Product](implicit num: Numeric[B]): B

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).sum(num)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def tail: CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).tail
    Definition Classes
    TraversableLike → GenTraversableLike
  134. def tails: Iterator[CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).tails
    Definition Classes
    TraversableLike
  135. def take(n: Int): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).take(n)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  136. def takeRight(n: Int): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).takeRight(n)
    Definition Classes
    IterableLike
  137. def takeWhile(p: (Product1[Product]) ⇒ Boolean): CollSeq1[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).takeWhile(p)
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  138. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Product1[Product], Col[Product1[Product]]]): Col[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).to(cbf)
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  139. def toArray[B >: Product](implicit arg0: ClassTag[B]): Array[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toArray(arg0)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  140. def toBuffer[A1 >: Product]: Buffer[A1]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toBuffer
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  141. def toIndexedSeq: IndexedSeq[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toIndexedSeq
    Definition Classes
    TraversableOnce → GenTraversableOnce
  142. def toIterable: Iterable[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  143. def toIterator: Iterator[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  144. def toList: List[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toList
    Definition Classes
    TraversableOnce → GenTraversableOnce
  145. def toMap[T, U](implicit ev: <:<[Product1[Product], (T, U)]): Map[T, U]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toMap(ev)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  146. def toSeq: Seq[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toSeq
    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  147. def toSet[B >: Product]: Set[B]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  148. def toStream: Stream[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  149. def toString(): String

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toString()
    Definition Classes
    CollSeq → SeqLike → TraversableLike → Function1 → AnyRef → Any
  150. def toTraversable: Traversable[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  151. def toVector: Vector[Product1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).toVector
    Definition Classes
    TraversableOnce → GenTraversableOnce
  152. def transpose[B](implicit asTraversable: (Product1[Product]) ⇒ GenTraversableOnce[B]): IndexedSeq[IndexedSeq[B]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).transpose(asTraversable)
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  153. def union[B >: Product, That](that: GenSeq[B])(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).union(that)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  154. def unzip[A1, A2](implicit asPair: (Product1[Product]) ⇒ (A1, A2)): (IndexedSeq[A1], IndexedSeq[A2])

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).unzip(asPair)
    Definition Classes
    GenericTraversableTemplate
  155. def unzip3[A1, A2, A3](implicit asTriple: (Product1[Product]) ⇒ (A1, A2, A3)): (IndexedSeq[A1], IndexedSeq[A2], IndexedSeq[A3])

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).unzip3(asTriple)
    Definition Classes
    GenericTraversableTemplate
  156. def updated[B >: Product, That](index: Int, elem: B)(implicit bf: CanBuildFrom[CollSeq1[Product], B, That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).updated(index, elem)(bf)
    Definition Classes
    SeqLike → GenSeqLike
  157. def view(from: Int, until: Int): SeqView[Product1[Product], CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).view(from, until)
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  158. def view: SeqView[Product1[Product], CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).view
    Definition Classes
    SeqLike → IterableLike → TraversableLike
  159. def withFilter(p: (Product) ⇒ Boolean): Iterator[Product]

    Implicit information
    This member is added by an implicit conversion from CollSeq to MonadOps[Product] performed by method MonadOps in scala.collection.TraversableOnce.
    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:
    (collSeq: MonadOps[Product]).withFilter(p)
    Definition Classes
    MonadOps
  160. def withFilter(p: (Product1[Product]) ⇒ Boolean): FilterMonadic[Product1[Product], CollSeq1[Product]]

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).withFilter(p)
    Definition Classes
    TraversableLike → FilterMonadic
  161. def zip[A1 >: Product, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[CollSeq1[Product], (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).zip(that)(bf)
    Definition Classes
    IterableLike → GenIterableLike
  162. def zipAll[B, A1 >: Product, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[CollSeq1[Product], (A1, B), That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).zipAll(that, thisElem, thatElem)(bf)
    Definition Classes
    IterableLike → GenIterableLike
  163. def zipWithIndex[A1 >: Product, That](implicit bf: CanBuildFrom[CollSeq1[Product], (A1, Int), That]): That

    Implicit information
    This member is added by an implicit conversion from CollSeq to collections.CollSeq1[Product] performed by method SeqToCollSeqTc in com.github.marklister.collections.
    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:
    (collSeq: collections.CollSeq1[Product]).zipWithIndex(bf)
    Definition Classes
    IterableLike → GenIterableLike

Inherited from Product

Inherited from IndexedSeq[Product]

Inherited from IndexedSeqLike[Product, IndexedSeq[Product]]

Inherited from Seq[Product]

Inherited from SeqLike[Product, IndexedSeq[Product]]

Inherited from GenSeq[Product]

Inherited from GenSeqLike[Product, IndexedSeq[Product]]

Inherited from Iterable[Product]

Inherited from IterableLike[Product, IndexedSeq[Product]]

Inherited from Equals

Inherited from GenIterable[Product]

Inherited from GenIterableLike[Product, IndexedSeq[Product]]

Inherited from Traversable[Product]

Inherited from GenTraversable[Product]

Inherited from GenericTraversableTemplate[Product, IndexedSeq]

Inherited from TraversableLike[Product, IndexedSeq[Product]]

Inherited from GenTraversableLike[Product, IndexedSeq[Product]]

Inherited from Parallelizable[Product, ParSeq[Product]]

Inherited from TraversableOnce[Product]

Inherited from GenTraversableOnce[Product]

Inherited from FilterMonadic[Product, IndexedSeq[Product]]

Inherited from HasNewBuilder[Product, IndexedSeq[Product] @scala.annotation.unchecked.uncheckedVariance]

Inherited from PartialFunction[Int, Product]

Inherited from (Int) ⇒ Product

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion CollectionsHaveToParArray from CollSeq to CollectionsHaveToParArray[CollSeq, T]

Inherited by implicit conversion MonadOps from CollSeq to MonadOps[Product]

Inherited by implicit conversion SeqToCollSeqTc from CollSeq to collections.CollSeq1[Product]

Inherited by implicit conversion any2stringadd from CollSeq to any2stringadd[CollSeq]

Inherited by implicit conversion StringFormat from CollSeq to StringFormat[CollSeq]

Inherited by implicit conversion Ensuring from CollSeq to Ensuring[CollSeq]

Inherited by implicit conversion ArrowAssoc from CollSeq to ArrowAssoc[CollSeq]

Inherited by implicit conversion alternateImplicit from CollSeq to ForceImplicitAmbiguity

Ungrouped