Packages

object RleVectorI extends Serializable

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

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RleVectorI
  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]): RleVectorI

    Create a RleVectorI from an array of Strings.

    Create a RleVectorI 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: Int, xs: Int*): RleVectorI

    Create a RleVectorI from one or more values (repeated values Int*).

    Create a RleVectorI from one or more values (repeated values Int*).

    x

    the first Int number

    xs

    the rest of the Int numbers

  3. def apply(xs: Seq[Int]): RleVectorI

    Create a RleVectorI from a sequence of Int.

    Create a RleVectorI from a sequence of Int.

    xs

    the sequence of the Int

  4. def apply(y: VectoI): RleVectorI

    Create a RleVectorI (i.e., Run Length Encoding compression) from VectorI.

    Create a RleVectorI (i.e., Run Length Encoding compression) from VectorI.

    y

    the VectorI to be compressed