ofDouble

nobox.ofDouble
See theofDouble companion object
final class ofDouble(val self: Array[Double]) extends AnyVal

Attributes

Companion:
object
Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def ++(that: ofDouble): ofDouble
def ===(that: ofDouble): Boolean
def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
def collect[A](f: PartialFunction[Double, A])(implicit A: ClassTag[A]): Array[A]

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

def collectFirst[A](f: PartialFunction[Double, A])(implicit A: ClassTag[A]): Option[A]
def collectFirstBoolean(f: PartialFunction[Double, Boolean]): Option[Boolean]
def collectFirstByte(f: PartialFunction[Double, Byte]): Option[Byte]
def collectFirstChar(f: PartialFunction[Double, Char]): Option[Char]
def collectFirstDouble(f: PartialFunction[Double, Double]): Option[Double]
def collectFirstFloat(f: PartialFunction[Double, Float]): Option[Float]
def collectFirstInt(f: PartialFunction[Double, Int]): Option[Int]
def collectFirstLong(f: PartialFunction[Double, Long]): Option[Long]
def collectFirstRef[Y <: AnyRef : ClassTag](f: PartialFunction[Double, Y]): Option[Y]
def collectFirstShort(f: PartialFunction[Double, Short]): Option[Short]
def collectFloat(f: PartialFunction[Double, Float]): ofFloat

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

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

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

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

Attributes

def contains(elem: Double): Boolean
def count(f: Double => Boolean): Int
def deleteFirst(elem: Double): ofDouble
def drop(n: Int): ofDouble
def dropRight(n: Int): ofDouble
def dropWhile(f: Double => Boolean): ofDouble
def dropWhileR(f: Double => Boolean): ofDouble
def endsWith(that: Array[Double]): Boolean
def exists(f: Double => Boolean): Boolean
def filter(f: Double => Boolean): ofDouble
def filterNot(f: Double => Boolean): ofDouble
def find(f: Double => Boolean): Option[Double]
def flatMap[A](f: Double => Array[A])(implicit A: ClassTag[A]): Array[A]
def flatMapBoolean(f: Double => Array[Boolean]): ofBoolean
def flatMapByte(f: Double => Array[Byte]): ofByte
def flatMapChar(f: Double => Array[Char]): ofChar
def flatMapDouble(f: Double => Array[Double]): ofDouble
def flatMapFloat(f: Double => Array[Float]): ofFloat
def flatMapInt(f: Double => Array[Int]): ofInt
def flatMapLong(f: Double => Array[Long]): ofLong
def flatMapRef[Y <: AnyRef : ClassTag](f: Double => Array[Y]): ofRef[Y]
def flatMapShort(f: Double => Array[Short]): ofShort
def foldLeft[A](z: A)(f: (A, Double) => A)(implicit A: ClassTag[A]): A
def foldLeftBoolean(z: Boolean)(f: (Boolean, Double) => Boolean): Boolean
def foldLeftByte(z: Byte)(f: (Byte, Double) => Byte): Byte
def foldLeftChar(z: Char)(f: (Char, Double) => Char): Char
def foldLeftDouble(z: Double)(f: (Double, Double) => Double): Double
def foldLeftFloat(z: Float)(f: (Float, Double) => Float): Float
def foldLeftInt(z: Int)(f: (Int, Double) => Int): Int
def foldLeftLong(z: Long)(f: (Long, Double) => Long): Long
def foldLeftRef[Y](z: Y)(f: (Y, Double) => Y): Y
def foldLeftShort(z: Short)(f: (Short, Double) => Short): Short
def foldMapLeft1[A](z: Double => A)(f: (A, Double) => A)(implicit A: ClassTag[A]): Option[A]
def foldMapLeft1Boolean(z: Double => Boolean)(f: (Boolean, Double) => Boolean): Option[Boolean]
def foldMapLeft1Byte(z: Double => Byte)(f: (Byte, Double) => Byte): Option[Byte]
def foldMapLeft1Char(z: Double => Char)(f: (Char, Double) => Char): Option[Char]
def foldMapLeft1Double(z: Double => Double)(f: (Double, Double) => Double): Option[Double]
def foldMapLeft1Float(z: Double => Float)(f: (Float, Double) => Float): Option[Float]
def foldMapLeft1Int(z: Double => Int)(f: (Int, Double) => Int): Option[Int]
def foldMapLeft1Long(z: Double => Long)(f: (Long, Double) => Long): Option[Long]
def foldMapLeft1Ref[Y](z: Double => Y)(f: (Y, Double) => Y): Option[Y]
def foldMapLeft1Short(z: Double => Short)(f: (Short, Double) => Short): Option[Short]
def foldMapRight1[A](z: Double => A)(f: (Double, A) => A)(implicit A: ClassTag[A]): Option[A]
def foldMapRight1Boolean(z: Double => Boolean)(f: (Double, Boolean) => Boolean): Option[Boolean]
def foldMapRight1Byte(z: Double => Byte)(f: (Double, Byte) => Byte): Option[Byte]
def foldMapRight1Char(z: Double => Char)(f: (Double, Char) => Char): Option[Char]
def foldMapRight1Double(z: Double => Double)(f: (Double, Double) => Double): Option[Double]
def foldMapRight1Float(z: Double => Float)(f: (Double, Float) => Float): Option[Float]
def foldMapRight1Int(z: Double => Int)(f: (Double, Int) => Int): Option[Int]
def foldMapRight1Long(z: Double => Long)(f: (Double, Long) => Long): Option[Long]
def foldMapRight1Ref[Y](z: Double => Y)(f: (Double, Y) => Y): Option[Y]
def foldMapRight1Short(z: Double => Short)(f: (Double, Short) => Short): Option[Short]
def foldRight[A](z: A)(f: (Double, A) => A)(implicit A: ClassTag[A]): A
def foldRightBoolean(z: Boolean)(f: (Double, Boolean) => Boolean): Boolean
def foldRightByte(z: Byte)(f: (Double, Byte) => Byte): Byte
def foldRightChar(z: Char)(f: (Double, Char) => Char): Char
def foldRightDouble(z: Double)(f: (Double, Double) => Double): Double
def foldRightFloat(z: Float)(f: (Double, Float) => Float): Float
def foldRightInt(z: Int)(f: (Double, Int) => Int): Int
def foldRightLong(z: Long)(f: (Double, Long) => Long): Long
def foldRightRef[Y](z: Y)(f: (Double, Y) => Y): Y
def foldRightShort(z: Short)(f: (Double, Short) => Short): Short
def forall(f: Double => Boolean): Boolean
def foreach[U](f: Double => U): Unit
def groupBy[A](f: Double => A): Map[A, ofDouble]
def grouped(n: Int): Iterator[ofDouble]
def indexOf(elem: Double): Option[Int]
def initOption: Option[ofDouble]
def inits: Iterator[ofDouble]
def intersperse(a: Double): ofDouble
def lastIndexOf(elem: Double): Option[Int]
def length: Int
def map[A](f: Double => A)(implicit A: ClassTag[A]): Array[A]
def mapBoolean(f: Double => Boolean): ofBoolean
def mapByte(f: Double => Byte): ofByte
def mapChar(f: Double => Char): ofChar
def mapDouble(f: Double => Double): ofDouble
def mapFloat(f: Double => Float): ofFloat
def mapInt(f: Double => Int): ofInt
def mapLong(f: Double => Long): ofLong
def mapRef[Y <: AnyRef : ClassTag](f: Double => Y): ofRef[Y]
def mapShort(f: Double => Short): ofShort
def max: Option[Double]
def maxBy[A](f: Double => A)(implicit A: Ordering[A]): Option[Double]
def min: Option[Double]
def minBy[A](f: Double => A)(implicit A: Ordering[A]): Option[Double]
def minmax: Option[(Double, Double)]
def mkString(start: String, sep: String, end: String): String
def mkString(sep: String): String
def mkString: String
def partition(f: Double => Boolean): (ofDouble, ofDouble)
def product: Double
def reduceLeftOption(f: (Double, Double) => Double): Option[Double]
def reduceRightOption(f: (Double, Double) => Double): Option[Double]
def reverseMap[A](f: Double => A)(implicit A: ClassTag[A]): Array[A]
def reverseMapBoolean(f: Double => Boolean): ofBoolean
def reverseMapByte(f: Double => Byte): ofByte
def reverseMapChar(f: Double => Char): ofChar
def reverseMapDouble(f: Double => Double): ofDouble
def reverseMapFloat(f: Double => Float): ofFloat
def reverseMapInt(f: Double => Int): ofInt
def reverseMapLong(f: Double => Long): ofLong
def reverseMapRef[Y <: AnyRef : ClassTag](f: Double => Y): ofRef[Y]
def reverseMapShort(f: Double => Short): ofShort
def scanLeft[A](z: A)(f: (A, Double) => A)(implicit A: ClassTag[A]): Array[A]
def scanLeft1(f: (Double, Double) => Double): ofDouble
def scanLeftBoolean(z: Boolean)(f: (Boolean, Double) => Boolean): ofBoolean
def scanLeftByte(z: Byte)(f: (Byte, Double) => Byte): ofByte
def scanLeftChar(z: Char)(f: (Char, Double) => Char): ofChar
def scanLeftDouble(z: Double)(f: (Double, Double) => Double): ofDouble
def scanLeftFloat(z: Float)(f: (Float, Double) => Float): ofFloat
def scanLeftInt(z: Int)(f: (Int, Double) => Int): ofInt
def scanLeftLong(z: Long)(f: (Long, Double) => Long): ofLong
def scanLeftRef[Y <: AnyRef : ClassTag](z: Y)(f: (Y, Double) => Y): ofRef[Y]
def scanLeftShort(z: Short)(f: (Short, Double) => Short): ofShort
def scanRight[A](z: A)(f: (Double, A) => A)(implicit A: ClassTag[A]): Array[A]
def scanRight1(f: (Double, Double) => Double): ofDouble
def scanRightBoolean(z: Boolean)(f: (Double, Boolean) => Boolean): ofBoolean
def scanRightByte(z: Byte)(f: (Double, Byte) => Byte): ofByte
def scanRightChar(z: Char)(f: (Double, Char) => Char): ofChar
def scanRightDouble(z: Double)(f: (Double, Double) => Double): ofDouble
def scanRightFloat(z: Float)(f: (Double, Float) => Float): ofFloat
def scanRightInt(z: Int)(f: (Double, Int) => Int): ofInt
def scanRightLong(z: Long)(f: (Double, Long) => Long): ofLong
def scanRightRef[Y <: AnyRef : ClassTag](z: Y)(f: (Double, Y) => Y): ofRef[Y]
def scanRightShort(z: Short)(f: (Double, Short) => Short): ofShort
def size: Int
def slice(from: Int, until: Int): ofDouble
def sliding(_size: Int, step: Int): Iterator[ofDouble]
def span(f: Double => Boolean): (ofDouble, ofDouble)
def splitAt(n: Int): (ofDouble, ofDouble)
def startsWith(that: Array[Double], offset: Int): Boolean
def sum: Double
def tailOption: Option[ofDouble]
def tails: Iterator[ofDouble]
def take(n: Int): ofDouble
def takeRight(n: Int): ofDouble
def takeWhile(f: Double => Boolean): ofDouble
def takeWhileR(f: Double => Boolean): ofDouble
def toArray: Array[Double]
def toList: List[Double]
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns:

a string representation of the object.

Definition Classes
Any
def updated(index: Int, elem: Double): ofDouble
def withFilter(f: Double => Boolean): WithFilterDouble

Concrete fields

val self: Array[Double]