Class/Object

nobox

ofDouble

Related Docs: object ofDouble | package nobox

Permalink

final class ofDouble extends AnyVal

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

Instance Constructors

  1. new ofDouble(self: Array[Double])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    Any
  3. def ++(that: ofDouble): ofDouble

    Permalink
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  5. def ===(that: ofDouble): Boolean

    Permalink
    Annotations
    @inline()
  6. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def collect[A](f: PartialFunction[Double, A])(implicit A: ClassTag[A]): Array[A]

    Permalink

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

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

  13. def collectFirst[A](f: PartialFunction[Double, A])(implicit A: ClassTag[A]): Option[A]

    Permalink
  14. def collectFirstBoolean(f: PartialFunction[Double, Boolean]): Option[Boolean]

    Permalink
  15. def collectFirstByte(f: PartialFunction[Double, Byte]): Option[Byte]

    Permalink
  16. def collectFirstChar(f: PartialFunction[Double, Char]): Option[Char]

    Permalink
  17. def collectFirstDouble(f: PartialFunction[Double, Double]): Option[Double]

    Permalink
  18. def collectFirstFloat(f: PartialFunction[Double, Float]): Option[Float]

    Permalink
  19. def collectFirstInt(f: PartialFunction[Double, Int]): Option[Int]

    Permalink
  20. def collectFirstLong(f: PartialFunction[Double, Long]): Option[Long]

    Permalink
  21. def collectFirstRef[Y <: AnyRef](f: PartialFunction[Double, Y])(implicit arg0: ClassTag[Y]): Option[Y]

    Permalink
  22. def collectFirstShort(f: PartialFunction[Double, Short]): Option[Short]

    Permalink
  23. def collectFloat(f: PartialFunction[Double, Float]): ofFloat

    Permalink

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

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

  28. def contains(elem: Double): Boolean

    Permalink
  29. def count(f: (Double) ⇒ Boolean): Int

    Permalink
  30. def deleteFirst(elem: Double): ofDouble

    Permalink
  31. def drop(n: Int): ofDouble

    Permalink
  32. def dropRight(n: Int): ofDouble

    Permalink
  33. def dropWhile(f: (Double) ⇒ Boolean): ofDouble

    Permalink
  34. def dropWhileR(f: (Double) ⇒ Boolean): ofDouble

    Permalink
  35. def endsWith(that: Array[Double]): Boolean

    Permalink
  36. def exists(f: (Double) ⇒ Boolean): Boolean

    Permalink
  37. def filter(f: (Double) ⇒ Boolean): ofDouble

    Permalink
  38. def filterNot(f: (Double) ⇒ Boolean): ofDouble

    Permalink
  39. def find(f: (Double) ⇒ Boolean): Option[Double]

    Permalink
  40. def flatMap[A](f: (Double) ⇒ Array[A])(implicit A: ClassTag[A]): Array[A]

    Permalink
  41. def flatMapBoolean(f: (Double) ⇒ Array[Boolean]): ofBoolean

    Permalink
  42. def flatMapByte(f: (Double) ⇒ Array[Byte]): ofByte

    Permalink
  43. def flatMapChar(f: (Double) ⇒ Array[Char]): ofChar

    Permalink
  44. def flatMapDouble(f: (Double) ⇒ Array[Double]): ofDouble

    Permalink
  45. def flatMapFloat(f: (Double) ⇒ Array[Float]): ofFloat

    Permalink
  46. def flatMapInt(f: (Double) ⇒ Array[Int]): ofInt

    Permalink
  47. def flatMapLong(f: (Double) ⇒ Array[Long]): ofLong

    Permalink
  48. def flatMapRef[Y <: AnyRef](f: (Double) ⇒ Array[Y])(implicit arg0: ClassTag[Y]): ofRef[Y]

    Permalink
  49. def flatMapShort(f: (Double) ⇒ Array[Short]): ofShort

    Permalink
  50. def foldLeft[A](z: A)(f: (A, Double) ⇒ A)(implicit A: ClassTag[A]): A

    Permalink
  51. def foldLeftBoolean(z: Boolean)(f: (Boolean, Double) ⇒ Boolean): Boolean

    Permalink
  52. def foldLeftByte(z: Byte)(f: (Byte, Double) ⇒ Byte): Byte

    Permalink
  53. def foldLeftChar(z: Char)(f: (Char, Double) ⇒ Char): Char

    Permalink
  54. def foldLeftDouble(z: Double)(f: (Double, Double) ⇒ Double): Double

    Permalink
  55. def foldLeftFloat(z: Float)(f: (Float, Double) ⇒ Float): Float

    Permalink
  56. def foldLeftInt(z: Int)(f: (Int, Double) ⇒ Int): Int

    Permalink
  57. def foldLeftLong(z: Long)(f: (Long, Double) ⇒ Long): Long

    Permalink
  58. def foldLeftRef[Y](z: Y)(f: (Y, Double) ⇒ Y): Y

    Permalink
  59. def foldLeftShort(z: Short)(f: (Short, Double) ⇒ Short): Short

    Permalink
  60. def foldMapLeft1[A](z: (Double) ⇒ A)(f: (A, Double) ⇒ A)(implicit A: ClassTag[A]): Option[A]

    Permalink
  61. def foldMapLeft1Boolean(z: (Double) ⇒ Boolean)(f: (Boolean, Double) ⇒ Boolean): Option[Boolean]

    Permalink
  62. def foldMapLeft1Byte(z: (Double) ⇒ Byte)(f: (Byte, Double) ⇒ Byte): Option[Byte]

    Permalink
  63. def foldMapLeft1Char(z: (Double) ⇒ Char)(f: (Char, Double) ⇒ Char): Option[Char]

    Permalink
  64. def foldMapLeft1Double(z: (Double) ⇒ Double)(f: (Double, Double) ⇒ Double): Option[Double]

    Permalink
  65. def foldMapLeft1Float(z: (Double) ⇒ Float)(f: (Float, Double) ⇒ Float): Option[Float]

    Permalink
  66. def foldMapLeft1Int(z: (Double) ⇒ Int)(f: (Int, Double) ⇒ Int): Option[Int]

    Permalink
  67. def foldMapLeft1Long(z: (Double) ⇒ Long)(f: (Long, Double) ⇒ Long): Option[Long]

    Permalink
  68. def foldMapLeft1Ref[Y](z: (Double) ⇒ Y)(f: (Y, Double) ⇒ Y): Option[Y]

    Permalink
  69. def foldMapLeft1Short(z: (Double) ⇒ Short)(f: (Short, Double) ⇒ Short): Option[Short]

    Permalink
  70. def foldMapRight1[A](z: (Double) ⇒ A)(f: (Double, A) ⇒ A)(implicit A: ClassTag[A]): Option[A]

    Permalink
  71. def foldMapRight1Boolean(z: (Double) ⇒ Boolean)(f: (Double, Boolean) ⇒ Boolean): Option[Boolean]

    Permalink
  72. def foldMapRight1Byte(z: (Double) ⇒ Byte)(f: (Double, Byte) ⇒ Byte): Option[Byte]

    Permalink
  73. def foldMapRight1Char(z: (Double) ⇒ Char)(f: (Double, Char) ⇒ Char): Option[Char]

    Permalink
  74. def foldMapRight1Double(z: (Double) ⇒ Double)(f: (Double, Double) ⇒ Double): Option[Double]

    Permalink
  75. def foldMapRight1Float(z: (Double) ⇒ Float)(f: (Double, Float) ⇒ Float): Option[Float]

    Permalink
  76. def foldMapRight1Int(z: (Double) ⇒ Int)(f: (Double, Int) ⇒ Int): Option[Int]

    Permalink
  77. def foldMapRight1Long(z: (Double) ⇒ Long)(f: (Double, Long) ⇒ Long): Option[Long]

    Permalink
  78. def foldMapRight1Ref[Y](z: (Double) ⇒ Y)(f: (Double, Y) ⇒ Y): Option[Y]

    Permalink
  79. def foldMapRight1Short(z: (Double) ⇒ Short)(f: (Double, Short) ⇒ Short): Option[Short]

    Permalink
  80. def foldRight[A](z: A)(f: (Double, A) ⇒ A)(implicit A: ClassTag[A]): A

    Permalink
  81. def foldRightBoolean(z: Boolean)(f: (Double, Boolean) ⇒ Boolean): Boolean

    Permalink
  82. def foldRightByte(z: Byte)(f: (Double, Byte) ⇒ Byte): Byte

    Permalink
  83. def foldRightChar(z: Char)(f: (Double, Char) ⇒ Char): Char

    Permalink
  84. def foldRightDouble(z: Double)(f: (Double, Double) ⇒ Double): Double

    Permalink
  85. def foldRightFloat(z: Float)(f: (Double, Float) ⇒ Float): Float

    Permalink
  86. def foldRightInt(z: Int)(f: (Double, Int) ⇒ Int): Int

    Permalink
  87. def foldRightLong(z: Long)(f: (Double, Long) ⇒ Long): Long

    Permalink
  88. def foldRightRef[Y](z: Y)(f: (Double, Y) ⇒ Y): Y

    Permalink
  89. def foldRightShort(z: Short)(f: (Double, Short) ⇒ Short): Short

    Permalink
  90. def forall(f: (Double) ⇒ Boolean): Boolean

    Permalink
  91. def foreach[U](f: (Double) ⇒ U): Unit

    Permalink
  92. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  93. def groupBy[A](f: (Double) ⇒ A): Map[A, ofDouble]

    Permalink
  94. def grouped(n: Int): Iterator[ofDouble]

    Permalink
    Annotations
    @throws( ... )
  95. def indexOf(elem: Double): Option[Int]

    Permalink
  96. def initOption: Option[ofDouble]

    Permalink
  97. def inits: Iterator[ofDouble]

    Permalink
  98. def interleave(that: ofDouble): ofDouble

    Permalink
  99. def intersperse(a: Double): ofDouble

    Permalink
  100. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  101. def lastIndexOf(elem: Double): Option[Int]

    Permalink
  102. def length: Int

    Permalink
    Annotations
    @inline()
  103. def map[A](f: (Double) ⇒ A)(implicit A: ClassTag[A]): Array[A]

    Permalink
  104. def mapBoolean(f: (Double) ⇒ Boolean): ofBoolean

    Permalink
  105. def mapByte(f: (Double) ⇒ Byte): ofByte

    Permalink
  106. def mapChar(f: (Double) ⇒ Char): ofChar

    Permalink
  107. def mapDouble(f: (Double) ⇒ Double): ofDouble

    Permalink
  108. def mapFloat(f: (Double) ⇒ Float): ofFloat

    Permalink
  109. def mapInt(f: (Double) ⇒ Int): ofInt

    Permalink
  110. def mapLong(f: (Double) ⇒ Long): ofLong

    Permalink
  111. def mapRef[Y <: AnyRef](f: (Double) ⇒ Y)(implicit arg0: ClassTag[Y]): ofRef[Y]

    Permalink
  112. def mapShort(f: (Double) ⇒ Short): ofShort

    Permalink
  113. def max: Option[Double]

    Permalink
  114. def maxBy[A](f: (Double) ⇒ A)(implicit A: Ordering[A]): Option[Double]

    Permalink
  115. def min: Option[Double]

    Permalink
  116. def minBy[A](f: (Double) ⇒ A)(implicit A: Ordering[A]): Option[Double]

    Permalink
  117. def minmax: Option[(Double, Double)]

    Permalink
  118. def mkString: String

    Permalink
  119. def mkString(sep: String): String

    Permalink
  120. def mkString(start: String, sep: String, end: String): String

    Permalink
  121. def partition(f: (Double) ⇒ Boolean): (ofDouble, ofDouble)

    Permalink
  122. def product: Double

    Permalink
  123. def reduceLeftOption(f: (Double, Double) ⇒ Double): Option[Double]

    Permalink
  124. def reduceRightOption(f: (Double, Double) ⇒ Double): Option[Double]

    Permalink
  125. def reverse: ofDouble

    Permalink
  126. def reverseMap[A](f: (Double) ⇒ A)(implicit A: ClassTag[A]): Array[A]

    Permalink
  127. def reverseMapBoolean(f: (Double) ⇒ Boolean): ofBoolean

    Permalink
  128. def reverseMapByte(f: (Double) ⇒ Byte): ofByte

    Permalink
  129. def reverseMapChar(f: (Double) ⇒ Char): ofChar

    Permalink
  130. def reverseMapDouble(f: (Double) ⇒ Double): ofDouble

    Permalink
  131. def reverseMapFloat(f: (Double) ⇒ Float): ofFloat

    Permalink
  132. def reverseMapInt(f: (Double) ⇒ Int): ofInt

    Permalink
  133. def reverseMapLong(f: (Double) ⇒ Long): ofLong

    Permalink
  134. def reverseMapRef[Y <: AnyRef](f: (Double) ⇒ Y)(implicit arg0: ClassTag[Y]): ofRef[Y]

    Permalink
  135. def reverseMapShort(f: (Double) ⇒ Short): ofShort

    Permalink
  136. def reverse_:::(prefix: ofDouble): ofDouble

    Permalink
  137. def scanLeft[A](z: A)(f: (A, Double) ⇒ A)(implicit A: ClassTag[A]): Array[A]

    Permalink
  138. def scanLeft1(f: (Double, Double) ⇒ Double): ofDouble

    Permalink
  139. def scanLeftBoolean(z: Boolean)(f: (Boolean, Double) ⇒ Boolean): ofBoolean

    Permalink
  140. def scanLeftByte(z: Byte)(f: (Byte, Double) ⇒ Byte): ofByte

    Permalink
  141. def scanLeftChar(z: Char)(f: (Char, Double) ⇒ Char): ofChar

    Permalink
  142. def scanLeftDouble(z: Double)(f: (Double, Double) ⇒ Double): ofDouble

    Permalink
  143. def scanLeftFloat(z: Float)(f: (Float, Double) ⇒ Float): ofFloat

    Permalink
  144. def scanLeftInt(z: Int)(f: (Int, Double) ⇒ Int): ofInt

    Permalink
  145. def scanLeftLong(z: Long)(f: (Long, Double) ⇒ Long): ofLong

    Permalink
  146. def scanLeftRef[Y <: AnyRef](z: Y)(f: (Y, Double) ⇒ Y)(implicit arg0: ClassTag[Y]): ofRef[Y]

    Permalink
  147. def scanLeftShort(z: Short)(f: (Short, Double) ⇒ Short): ofShort

    Permalink
  148. def scanRight[A](z: A)(f: (Double, A) ⇒ A)(implicit A: ClassTag[A]): Array[A]

    Permalink
  149. def scanRight1(f: (Double, Double) ⇒ Double): ofDouble

    Permalink
  150. def scanRightBoolean(z: Boolean)(f: (Double, Boolean) ⇒ Boolean): ofBoolean

    Permalink
  151. def scanRightByte(z: Byte)(f: (Double, Byte) ⇒ Byte): ofByte

    Permalink
  152. def scanRightChar(z: Char)(f: (Double, Char) ⇒ Char): ofChar

    Permalink
  153. def scanRightDouble(z: Double)(f: (Double, Double) ⇒ Double): ofDouble

    Permalink
  154. def scanRightFloat(z: Float)(f: (Double, Float) ⇒ Float): ofFloat

    Permalink
  155. def scanRightInt(z: Int)(f: (Double, Int) ⇒ Int): ofInt

    Permalink
  156. def scanRightLong(z: Long)(f: (Double, Long) ⇒ Long): ofLong

    Permalink
  157. def scanRightRef[Y <: AnyRef](z: Y)(f: (Double, Y) ⇒ Y)(implicit arg0: ClassTag[Y]): ofRef[Y]

    Permalink
  158. def scanRightShort(z: Short)(f: (Double, Short) ⇒ Short): ofShort

    Permalink
  159. val self: Array[Double]

    Permalink
  160. def size: Int

    Permalink
    Annotations
    @inline()
  161. def slice(from: Int, until: Int): ofDouble

    Permalink
  162. def sliding(_size: Int, step: Int = 1): Iterator[ofDouble]

    Permalink
    Annotations
    @throws( ... )
  163. def sorted: ofDouble

    Permalink
  164. def span(f: (Double) ⇒ Boolean): (ofDouble, ofDouble)

    Permalink
  165. def splitAt(n: Int): (ofDouble, ofDouble)

    Permalink
  166. def startsWith(that: Array[Double], offset: Int = 0): Boolean

    Permalink
  167. def sum: Double

    Permalink
  168. def tailOption: Option[ofDouble]

    Permalink
  169. def tails: Iterator[ofDouble]

    Permalink
  170. def take(n: Int): ofDouble

    Permalink
  171. def takeRight(n: Int): ofDouble

    Permalink
  172. def takeWhile(f: (Double) ⇒ Boolean): ofDouble

    Permalink
  173. def takeWhileR(f: (Double) ⇒ Boolean): ofDouble

    Permalink
  174. def toArray: Array[Double]

    Permalink
  175. def toList: List[Double]

    Permalink
  176. def toString(): String

    Permalink
    Definition Classes
    ofDouble → Any
  177. def updated(index: Int, elem: Double): ofDouble

    Permalink
    Annotations
    @throws( ... )
  178. def withFilter(f: (Double) ⇒ Boolean): WithFilterDouble

    Permalink

Inherited from AnyVal

Inherited from Any

Ungrouped