case class Profiles(data: IndexedSeq[Profile]) extends Iterable[Profile] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Iterable[Profile], IterableFactoryDefaults[Profile, Iterable], IterableOps[Profile, Iterable, Iterable[Profile]], IterableOnceOps[Profile, Iterable, Iterable[Profile]], IterableOnce[Profile], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Profiles
  2. Serializable
  3. Product
  4. Equals
  5. Iterable
  6. IterableFactoryDefaults
  7. IterableOps
  8. IterableOnceOps
  9. IterableOnce
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Profiles(data: IndexedSeq[Profile])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ++[B >: Profile](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  6. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  7. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  8. def apply(profileId: ProfileId): Profile
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. final def coll: Profiles.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  13. def collect[B](pf: PartialFunction[Profile, B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  14. def collectFirst[B](pf: PartialFunction[Profile, B]): Option[B]
    Definition Classes
    IterableOnceOps
  15. def concat[B >: Profile](suffix: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
  16. def copyToArray[B >: Profile](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  17. def copyToArray[B >: Profile](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  18. def copyToArray[B >: Profile](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  19. def corresponds[B](that: IterableOnce[B])(p: (Profile, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  20. def count(p: (Profile) => Boolean): Int
    Definition Classes
    IterableOnceOps
  21. def drop(n: Int): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  22. def dropRight(n: Int): Iterable[Profile]
    Definition Classes
    IterableOps
  23. def dropWhile(p: (Profile) => Boolean): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  24. def empty: Iterable[Profile]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  25. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. def exists(p: (Profile) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  27. def filter(pred: (Profile) => Boolean): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  28. def filterNot(pred: (Profile) => Boolean): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  29. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  30. def find(p: (Profile) => Boolean): Option[Profile]
    Definition Classes
    IterableOnceOps
  31. def flatMap[B](f: (Profile) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  32. def flatten[B](implicit asIterable: (Profile) => IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  33. def fold[A1 >: Profile](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  34. def foldLeft[B](z: B)(op: (B, Profile) => B): B
    Definition Classes
    IterableOnceOps
  35. def foldRight[B](z: B)(op: (Profile, B) => B): B
    Definition Classes
    IterableOnceOps
  36. def forall(p: (Profile) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  37. def foreach[U](f: (Profile) => U): Unit
    Definition Classes
    Profiles → IterableOnceOps
  38. def fromSpecific(coll: IterableOnce[Profile]): Iterable[Profile]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  39. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  40. def groupBy[K](f: (Profile) => K): Map[K, Iterable[Profile]]
    Definition Classes
    IterableOps
  41. def groupMap[K, B](key: (Profile) => K)(f: (Profile) => B): Map[K, Iterable[B]]
    Definition Classes
    IterableOps
  42. def groupMapReduce[K, B](key: (Profile) => K)(f: (Profile) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  43. def grouped(size: Int): Iterator[Iterable[Profile]]
    Definition Classes
    IterableOps
  44. def head: Profile
    Definition Classes
    IterableOps
  45. def headOption: Option[Profile]
    Definition Classes
    IterableOps
  46. def ids: IndexedSeq[ProfileId]
  47. def init: Iterable[Profile]
    Definition Classes
    IterableOps
  48. def inits: Iterator[Iterable[Profile]]
    Definition Classes
    IterableOps
  49. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  50. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  51. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  52. def iterableFactory: IterableFactory[Iterable]
    Definition Classes
    Iterable → IterableOps
  53. def iterator: Iterator[Profile]
    Definition Classes
    Profiles → IterableOnce
  54. def knownSize: Int
    Definition Classes
    IterableOnce
  55. def last: Profile
    Definition Classes
    IterableOps
  56. def lastOption: Option[Profile]
    Definition Classes
    IterableOps
  57. def lazyZip[B](that: Iterable[B]): LazyZip2[Profile, B, Profiles.this.type]
    Definition Classes
    Iterable
  58. def map[B](f: (Profile) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  59. def max[B >: Profile](implicit ord: Ordering[B]): Profile
    Definition Classes
    IterableOnceOps
  60. def maxBy[B](f: (Profile) => B)(implicit cmp: Ordering[B]): Profile
    Definition Classes
    IterableOnceOps
  61. def maxByOption[B](f: (Profile) => B)(implicit cmp: Ordering[B]): Option[Profile]
    Definition Classes
    IterableOnceOps
  62. def maxOption[B >: Profile](implicit ord: Ordering[B]): Option[Profile]
    Definition Classes
    IterableOnceOps
  63. def min[B >: Profile](implicit ord: Ordering[B]): Profile
    Definition Classes
    IterableOnceOps
  64. def minBy[B](f: (Profile) => B)(implicit cmp: Ordering[B]): Profile
    Definition Classes
    IterableOnceOps
  65. def minByOption[B](f: (Profile) => B)(implicit cmp: Ordering[B]): Option[Profile]
    Definition Classes
    IterableOnceOps
  66. def minOption[B >: Profile](implicit ord: Ordering[B]): Option[Profile]
    Definition Classes
    IterableOnceOps
  67. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  68. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  69. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  70. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  71. def newSpecificBuilder: Builder[Profile, Iterable[Profile]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  72. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  73. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  74. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  75. def partition(p: (Profile) => Boolean): (Iterable[Profile], Iterable[Profile])
    Definition Classes
    IterableOps
  76. def partitionMap[A1, A2](f: (Profile) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  77. def product[B >: Profile](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  78. def productElementNames: Iterator[String]
    Definition Classes
    Product
  79. def reduce[B >: Profile](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  80. def reduceLeft[B >: Profile](op: (B, Profile) => B): B
    Definition Classes
    IterableOnceOps
  81. def reduceLeftOption[B >: Profile](op: (B, Profile) => B): Option[B]
    Definition Classes
    IterableOnceOps
  82. def reduceOption[B >: Profile](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  83. def reduceRight[B >: Profile](op: (Profile, B) => B): B
    Definition Classes
    IterableOnceOps
  84. def reduceRightOption[B >: Profile](op: (Profile, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  85. def reversed: Iterable[Profile]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  86. def scan[B >: Profile](z: B)(op: (B, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  87. def scanLeft[B](z: B)(op: (B, Profile) => B): Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  88. def scanRight[B](z: B)(op: (Profile, B) => B): Iterable[B]
    Definition Classes
    IterableOps
  89. def size: Int
    Definition Classes
    Profiles → IterableOnceOps
  90. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  91. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  92. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  93. def slice(from: Int, until: Int): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  94. def sliding(size: Int, step: Int): Iterator[Iterable[Profile]]
    Definition Classes
    IterableOps
  95. def sliding(size: Int): Iterator[Iterable[Profile]]
    Definition Classes
    IterableOps
  96. def span(p: (Profile) => Boolean): (Iterable[Profile], Iterable[Profile])
    Definition Classes
    IterableOps → IterableOnceOps
  97. def splitAt(n: Int): (Iterable[Profile], Iterable[Profile])
    Definition Classes
    IterableOps → IterableOnceOps
  98. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Profile, S]): S
    Definition Classes
    IterableOnce
  99. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding("Override className instead", "2.13.0")
  100. def sum[B >: Profile](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  101. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  102. def tail: Iterable[Profile]
    Definition Classes
    IterableOps
  103. def tails: Iterator[Iterable[Profile]]
    Definition Classes
    IterableOps
  104. def take(n: Int): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  105. def takeRight(n: Int): Iterable[Profile]
    Definition Classes
    IterableOps
  106. def takeWhile(p: (Profile) => Boolean): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  107. def tapEach[U](f: (Profile) => U): Iterable[Profile]
    Definition Classes
    IterableOps → IterableOnceOps
  108. def to[C1](factory: Factory[Profile, C1]): C1
    Definition Classes
    IterableOnceOps
  109. def toArray[B >: Profile](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  110. final def toBuffer[B >: Profile]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  111. def toIndexedSeq: IndexedSeq[Profile]
    Definition Classes
    IterableOnceOps
  112. final def toIterable: Profiles.this.type
    Definition Classes
    Iterable → IterableOps
  113. def toList: List[Profile]
    Definition Classes
    IterableOnceOps
  114. def toMap[K, V](implicit ev: <:<[Profile, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  115. def toSeq: Seq[Profile]
    Definition Classes
    IterableOnceOps
  116. def toSet[B >: Profile]: Set[B]
    Definition Classes
    IterableOnceOps
  117. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  118. def toVector: Vector[Profile]
    Definition Classes
    IterableOnceOps
  119. def transpose[B](implicit asIterable: (Profile) => Iterable[B]): Iterable[Iterable[B]]
    Definition Classes
    IterableOps
  120. def unzip[A1, A2](implicit asPair: (Profile) => (A1, A2)): (Iterable[A1], Iterable[A2])
    Definition Classes
    IterableOps
  121. def unzip3[A1, A2, A3](implicit asTriple: (Profile) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
    Definition Classes
    IterableOps
  122. def view: View[Profile]
    Definition Classes
    IterableOps
  123. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  124. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  125. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  126. def withFilter(p: (Profile) => Boolean): WithFilter[Profile, Iterable]
    Definition Classes
    IterableOps
  127. def zip[B](that: IterableOnce[B]): Iterable[(Profile, B)]
    Definition Classes
    IterableOps
  128. def zipAll[A1 >: Profile, B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
    Definition Classes
    IterableOps
  129. def zipWithIndex: Iterable[(Profile, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: Profile](that: IterableOnce[B]): Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. final def /:[B](z: B)(op: (B, Profile) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. final def :\[B](z: B)(op: (Profile, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  4. def aggregate[B](z: => B)(seqop: (B, Profile) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  5. def companion: IterableFactory[Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  6. final def copyToBuffer[B >: Profile](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  7. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  8. final def repr: Iterable[Profile]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  9. def seq: Profiles.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  10. final def toIterator: Iterator[Profile]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  11. final def toStream: Stream[Profile]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  12. final def toTraversable: Traversable[Profile]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  13. def view(from: Int, until: Int): View[Profile]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Iterable[Profile]

Inherited from IterableFactoryDefaults[Profile, Iterable]

Inherited from IterableOps[Profile, Iterable, Iterable[Profile]]

Inherited from IterableOnceOps[Profile, Iterable, Iterable[Profile]]

Inherited from IterableOnce[Profile]

Inherited from AnyRef

Inherited from Any

Ungrouped