final class ofInt extends AnyVal

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

Instance Constructors

  1. new ofInt(self: Array[Int])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##: Int
    Definition Classes
    Any
  3. def ++(that: ofInt): ofInt
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  5. def ===(that: ofInt): Boolean
    Annotations
    @inline()
  6. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def collect[A](f: PartialFunction[Int, A])(implicit A: ClassTag[A]): Array[A]

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  9. def collectBoolean(f: PartialFunction[Int, Boolean]): ofBoolean

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  10. def collectByte(f: PartialFunction[Int, Byte]): ofByte

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  11. def collectChar(f: PartialFunction[Int, Char]): ofChar

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  12. def collectDouble(f: PartialFunction[Int, Double]): ofDouble

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  13. def collectFirst[A](f: PartialFunction[Int, A])(implicit A: ClassTag[A]): Option[A]
  14. def collectFirstBoolean(f: PartialFunction[Int, Boolean]): Option[Boolean]
  15. def collectFirstByte(f: PartialFunction[Int, Byte]): Option[Byte]
  16. def collectFirstChar(f: PartialFunction[Int, Char]): Option[Char]
  17. def collectFirstDouble(f: PartialFunction[Int, Double]): Option[Double]
  18. def collectFirstFloat(f: PartialFunction[Int, Float]): Option[Float]
  19. def collectFirstInt(f: PartialFunction[Int, Int]): Option[Int]
  20. def collectFirstLong(f: PartialFunction[Int, Long]): Option[Long]
  21. def collectFirstRef[Y <: AnyRef](f: PartialFunction[Int, Y])(implicit arg0: ClassTag[Y]): Option[Y]
  22. def collectFirstShort(f: PartialFunction[Int, Short]): Option[Short]
  23. def collectFloat(f: PartialFunction[Int, Float]): ofFloat

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  24. def collectInt(f: PartialFunction[Int, Int]): ofInt

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  25. def collectLong(f: PartialFunction[Int, Long]): ofLong

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  26. def collectRef[Y <: AnyRef](f: PartialFunction[Int, Y])(implicit arg0: ClassTag[Y]): ofRef[Y]

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  27. def collectShort(f: PartialFunction[Int, Short]): ofShort

    can not avoid boxing PartialFunction#applyOrElse use .withFilter(predicate).map(f) instead

  28. def contains(elem: Int): Boolean
  29. def count(f: (Int) => Boolean): Int
  30. def deleteFirst(elem: Int): ofInt
  31. def drop(n: Int): ofInt
  32. def dropRight(n: Int): ofInt
  33. def dropWhile(f: (Int) => Boolean): ofInt
  34. def dropWhileR(f: (Int) => Boolean): ofInt
  35. def endsWith(that: Array[Int]): Boolean
  36. def exists(f: (Int) => Boolean): Boolean
  37. def filter(f: (Int) => Boolean): ofInt
  38. def filterNot(f: (Int) => Boolean): ofInt
  39. def find(f: (Int) => Boolean): Option[Int]
  40. def flatMap[A](f: (Int) => Array[A])(implicit A: ClassTag[A]): Array[A]
  41. def flatMapBoolean(f: (Int) => Array[Boolean]): ofBoolean
  42. def flatMapByte(f: (Int) => Array[Byte]): ofByte
  43. def flatMapChar(f: (Int) => Array[Char]): ofChar
  44. def flatMapDouble(f: (Int) => Array[Double]): ofDouble
  45. def flatMapFloat(f: (Int) => Array[Float]): ofFloat
  46. def flatMapInt(f: (Int) => Array[Int]): ofInt
  47. def flatMapLong(f: (Int) => Array[Long]): ofLong
  48. def flatMapRef[Y <: AnyRef](f: (Int) => Array[Y])(implicit arg0: ClassTag[Y]): ofRef[Y]
  49. def flatMapShort(f: (Int) => Array[Short]): ofShort
  50. def foldLeft[A](z: A)(f: (A, Int) => A)(implicit A: ClassTag[A]): A
  51. def foldLeftBoolean(z: Boolean)(f: (Boolean, Int) => Boolean): Boolean
  52. def foldLeftByte(z: Byte)(f: (Byte, Int) => Byte): Byte
  53. def foldLeftChar(z: Char)(f: (Char, Int) => Char): Char
  54. def foldLeftDouble(z: Double)(f: (Double, Int) => Double): Double
  55. def foldLeftFloat(z: Float)(f: (Float, Int) => Float): Float
  56. def foldLeftInt(z: Int)(f: (Int, Int) => Int): Int
  57. def foldLeftLong(z: Long)(f: (Long, Int) => Long): Long
  58. def foldLeftRef[Y](z: Y)(f: (Y, Int) => Y): Y
  59. def foldLeftShort(z: Short)(f: (Short, Int) => Short): Short
  60. def foldMapLeft1[A](z: (Int) => A)(f: (A, Int) => A)(implicit A: ClassTag[A]): Option[A]
  61. def foldMapLeft1Boolean(z: (Int) => Boolean)(f: (Boolean, Int) => Boolean): Option[Boolean]
  62. def foldMapLeft1Byte(z: (Int) => Byte)(f: (Byte, Int) => Byte): Option[Byte]
  63. def foldMapLeft1Char(z: (Int) => Char)(f: (Char, Int) => Char): Option[Char]
  64. def foldMapLeft1Double(z: (Int) => Double)(f: (Double, Int) => Double): Option[Double]
  65. def foldMapLeft1Float(z: (Int) => Float)(f: (Float, Int) => Float): Option[Float]
  66. def foldMapLeft1Int(z: (Int) => Int)(f: (Int, Int) => Int): Option[Int]
  67. def foldMapLeft1Long(z: (Int) => Long)(f: (Long, Int) => Long): Option[Long]
  68. def foldMapLeft1Ref[Y](z: (Int) => Y)(f: (Y, Int) => Y): Option[Y]
  69. def foldMapLeft1Short(z: (Int) => Short)(f: (Short, Int) => Short): Option[Short]
  70. def foldMapRight1[A](z: (Int) => A)(f: (Int, A) => A)(implicit A: ClassTag[A]): Option[A]
  71. def foldMapRight1Boolean(z: (Int) => Boolean)(f: (Int, Boolean) => Boolean): Option[Boolean]
  72. def foldMapRight1Byte(z: (Int) => Byte)(f: (Int, Byte) => Byte): Option[Byte]
  73. def foldMapRight1Char(z: (Int) => Char)(f: (Int, Char) => Char): Option[Char]
  74. def foldMapRight1Double(z: (Int) => Double)(f: (Int, Double) => Double): Option[Double]
  75. def foldMapRight1Float(z: (Int) => Float)(f: (Int, Float) => Float): Option[Float]
  76. def foldMapRight1Int(z: (Int) => Int)(f: (Int, Int) => Int): Option[Int]
  77. def foldMapRight1Long(z: (Int) => Long)(f: (Int, Long) => Long): Option[Long]
  78. def foldMapRight1Ref[Y](z: (Int) => Y)(f: (Int, Y) => Y): Option[Y]
  79. def foldMapRight1Short(z: (Int) => Short)(f: (Int, Short) => Short): Option[Short]
  80. def foldRight[A](z: A)(f: (Int, A) => A)(implicit A: ClassTag[A]): A
  81. def foldRightBoolean(z: Boolean)(f: (Int, Boolean) => Boolean): Boolean
  82. def foldRightByte(z: Byte)(f: (Int, Byte) => Byte): Byte
  83. def foldRightChar(z: Char)(f: (Int, Char) => Char): Char
  84. def foldRightDouble(z: Double)(f: (Int, Double) => Double): Double
  85. def foldRightFloat(z: Float)(f: (Int, Float) => Float): Float
  86. def foldRightInt(z: Int)(f: (Int, Int) => Int): Int
  87. def foldRightLong(z: Long)(f: (Int, Long) => Long): Long
  88. def foldRightRef[Y](z: Y)(f: (Int, Y) => Y): Y
  89. def foldRightShort(z: Short)(f: (Int, Short) => Short): Short
  90. def forall(f: (Int) => Boolean): Boolean
  91. def foreach[U](f: (Int) => U): Unit
  92. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  93. def groupBy[A](f: (Int) => A): Map[A, ofInt]
  94. def grouped(n: Int): Iterator[ofInt]
    Annotations
    @throws(scala.this.throws.<init>$default$1[IllegalArgumentException])
  95. def indexOf(elem: Int): Option[Int]
  96. def initOption: Option[ofInt]
  97. def inits: Iterator[ofInt]
  98. def interleave(that: ofInt): ofInt
  99. def intersperse(a: Int): ofInt
  100. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  101. def lastIndexOf(elem: Int): Option[Int]
  102. def length: Int
    Annotations
    @inline()
  103. def map[A](f: (Int) => A)(implicit A: ClassTag[A]): Array[A]
  104. def mapBoolean(f: (Int) => Boolean): ofBoolean
  105. def mapByte(f: (Int) => Byte): ofByte
  106. def mapChar(f: (Int) => Char): ofChar
  107. def mapDouble(f: (Int) => Double): ofDouble
  108. def mapFloat(f: (Int) => Float): ofFloat
  109. def mapInt(f: (Int) => Int): ofInt
  110. def mapLong(f: (Int) => Long): ofLong
  111. def mapRef[Y <: AnyRef](f: (Int) => Y)(implicit arg0: ClassTag[Y]): ofRef[Y]
  112. def mapShort(f: (Int) => Short): ofShort
  113. def max: Option[Int]
  114. def maxBy[A](f: (Int) => A)(implicit A: Ordering[A]): Option[Int]
  115. def min: Option[Int]
  116. def minBy[A](f: (Int) => A)(implicit A: Ordering[A]): Option[Int]
  117. def minmax: Option[(Int, Int)]
  118. def mkString: String
  119. def mkString(sep: String): String
  120. def mkString(start: String, sep: String, end: String): String
  121. def partition(f: (Int) => Boolean): (ofInt, ofInt)
  122. def product: Int
  123. def productDouble: Double
  124. def productLong: Long
  125. def reduceLeftOption(f: (Int, Int) => Int): Option[Int]
  126. def reduceRightOption(f: (Int, Int) => Int): Option[Int]
  127. def reverse: ofInt
  128. def reverseMap[A](f: (Int) => A)(implicit A: ClassTag[A]): Array[A]
  129. def reverseMapBoolean(f: (Int) => Boolean): ofBoolean
  130. def reverseMapByte(f: (Int) => Byte): ofByte
  131. def reverseMapChar(f: (Int) => Char): ofChar
  132. def reverseMapDouble(f: (Int) => Double): ofDouble
  133. def reverseMapFloat(f: (Int) => Float): ofFloat
  134. def reverseMapInt(f: (Int) => Int): ofInt
  135. def reverseMapLong(f: (Int) => Long): ofLong
  136. def reverseMapRef[Y <: AnyRef](f: (Int) => Y)(implicit arg0: ClassTag[Y]): ofRef[Y]
  137. def reverseMapShort(f: (Int) => Short): ofShort
  138. def reverse_:::(prefix: ofInt): ofInt
  139. def scanLeft[A](z: A)(f: (A, Int) => A)(implicit A: ClassTag[A]): Array[A]
  140. def scanLeft1(f: (Int, Int) => Int): ofInt
  141. def scanLeftBoolean(z: Boolean)(f: (Boolean, Int) => Boolean): ofBoolean
  142. def scanLeftByte(z: Byte)(f: (Byte, Int) => Byte): ofByte
  143. def scanLeftChar(z: Char)(f: (Char, Int) => Char): ofChar
  144. def scanLeftDouble(z: Double)(f: (Double, Int) => Double): ofDouble
  145. def scanLeftFloat(z: Float)(f: (Float, Int) => Float): ofFloat
  146. def scanLeftInt(z: Int)(f: (Int, Int) => Int): ofInt
  147. def scanLeftLong(z: Long)(f: (Long, Int) => Long): ofLong
  148. def scanLeftRef[Y <: AnyRef](z: Y)(f: (Y, Int) => Y)(implicit arg0: ClassTag[Y]): ofRef[Y]
  149. def scanLeftShort(z: Short)(f: (Short, Int) => Short): ofShort
  150. def scanRight[A](z: A)(f: (Int, A) => A)(implicit A: ClassTag[A]): Array[A]
  151. def scanRight1(f: (Int, Int) => Int): ofInt
  152. def scanRightBoolean(z: Boolean)(f: (Int, Boolean) => Boolean): ofBoolean
  153. def scanRightByte(z: Byte)(f: (Int, Byte) => Byte): ofByte
  154. def scanRightChar(z: Char)(f: (Int, Char) => Char): ofChar
  155. def scanRightDouble(z: Double)(f: (Int, Double) => Double): ofDouble
  156. def scanRightFloat(z: Float)(f: (Int, Float) => Float): ofFloat
  157. def scanRightInt(z: Int)(f: (Int, Int) => Int): ofInt
  158. def scanRightLong(z: Long)(f: (Int, Long) => Long): ofLong
  159. def scanRightRef[Y <: AnyRef](z: Y)(f: (Int, Y) => Y)(implicit arg0: ClassTag[Y]): ofRef[Y]
  160. def scanRightShort(z: Short)(f: (Int, Short) => Short): ofShort
  161. val self: Array[Int]
  162. def size: Int
    Annotations
    @inline()
  163. def slice(from: Int, until: Int): ofInt
  164. def sliding(_size: Int, step: Int = 1): Iterator[ofInt]
    Annotations
    @throws(scala.this.throws.<init>$default$1[IllegalArgumentException])
  165. def sorted: ofInt
  166. def span(f: (Int) => Boolean): (ofInt, ofInt)
  167. def splitAt(n: Int): (ofInt, ofInt)
  168. def startsWith(that: Array[Int], offset: Int = 0): Boolean
  169. def sum: Int
  170. def sumLong: Long
  171. def tailOption: Option[ofInt]
  172. def tails: Iterator[ofInt]
  173. def take(n: Int): ofInt
  174. def takeRight(n: Int): ofInt
  175. def takeWhile(f: (Int) => Boolean): ofInt
  176. def takeWhileR(f: (Int) => Boolean): ofInt
  177. def toArray: Array[Int]
  178. def toList: List[Int]
  179. def toString(): String
    Definition Classes
    ofInt → Any
  180. def updated(index: Int, elem: Int): ofInt
    Annotations
    @throws(scala.this.throws.<init>$default$1[IndexOutOfBoundsException])
  181. def withFilter(f: (Int) => Boolean): WithFilterInt

Inherited from AnyVal

Inherited from Any

Ungrouped