implicit final class RichSeq[A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RichSeq
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new RichSeq(self: Seq[A])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def createMap[K, V](values: (A) => V): Map[A, V]
- def createMap[K, V](keys: (A) => K, values: (A) => V): Map[K, V]
- def findItemAfter(itemToFind: A): Option[A]
- def foreachPartial(pf: PartialFunction[A, Unit]): Unit
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def groupBySingleValue[B](keys: (A) => B): Map[B, A]
Creates a map from the given sequence by mapping each transformed element (the key) by applying the function
keys
to the sequence and using the element in the sequence as the value.Creates a map from the given sequence by mapping each transformed element (the key) by applying the function
keys
to the sequence and using the element in the sequence as the value. Chooses the last element in the seq when a key collision occurs.- keys
the function that transforms a given element in the seq to a key
- returns
a map of the given sequence
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val self: Seq[A]
- def toString(): String
- Definition Classes
- Any