Packages

object RleVectorL extends Serializable

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

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

    Create a RleVectorL from an array of Strings.

    Create a RleVectorL 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: Long, xs: Long*): RleVectorL

    Create a RleVectorL from one or more values (repeated values Long*).

    Create a RleVectorL from one or more values (repeated values Long*).

    x

    the first Long number

    xs

    the rest of the Long numbers

  3. def apply(xs: Seq[Long]): RleVectorL

    Create a RleVectorL from a sequence of Long.

    Create a RleVectorL from a sequence of Long.

    xs

    the sequence of the Long

  4. def apply(y: VectoL): RleVectorL

    Create a RleVectorL (i.e., Run Length Encoding compression) from VectorL.

    Create a RleVectorL (i.e., Run Length Encoding compression) from VectorL.

    y

    the VectorL to be compressed