Packages

object RleVectorD extends Serializable

The RleVectorD object is the companion object for the RleVectorD class.

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RleVectorD
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(xs: Array[String]): RleVectorD

    Create a RleVectorD from an array of Strings.

    Create a RleVectorD from an array of Strings. For numeric types, assign missing value indicator upon format failure.

    xs

    the array of the Strings

  2. def apply(x: Double, xs: Double*): RleVectorD

    Create a RleVectorD from one or more values (repeated values Double*).

    Create a RleVectorD from one or more values (repeated values Double*).

    x

    the first Double number

    xs

    the rest of the Double numbers

  3. def apply(xs: Seq[Double]): RleVectorD

    Create a RleVectorD from a sequence of Double.

    Create a RleVectorD from a sequence of Double.

    xs

    the sequence of the Double

  4. def apply(y: VectoD): RleVectorD

    Create a RleVectorD (i.e., Run Length Encoding compression) from VectorD.

    Create a RleVectorD (i.e., Run Length Encoding compression) from VectorD.

    y

    the VectorD to be compressed