Packages

object VectorN extends Error with Serializable

The VectorN object is the companion object for VectorN class.

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

Value Members

  1. def apply[T](skip: T, xa: Array[String])(implicit arg0: (T) ⇒ Ordered[T], arg1: ClassTag[T], arg2: Numeric[T]): VectorN[T]

    Create a 'VectorN [T]' from an array of strings.

    Create a 'VectorN [T]' from an array of strings.

    skip

    dummy value to set data type

    xa

    the array of the Strings

  2. def apply[T](skip: T, x: String, xs: String*)(implicit arg0: (T) ⇒ Ordered[T], arg1: ClassTag[T], arg2: Numeric[T]): VectorN[T]

    Create a 'VectorN [T]' from one or more values (repeated values String*).

    Create a 'VectorN [T]' from one or more values (repeated values String*).

    skip

    dummy value to set data type

    x

    the first String

    xs

    the rest of the Strings

  3. def apply[T](x: T, xs: T*)(implicit arg0: (T) ⇒ Ordered[T], arg1: ClassTag[T], arg2: Numeric[T]): VectorN[T]

    Create a VectorN [T] from one or more values (repeated values T*).

  4. final def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  5. def range[T](skip: T, start: Int, end: Int)(implicit arg0: (T) ⇒ Ordered[T], arg1: ClassTag[T], arg2: Numeric[T]): VectorN[T]

    Return a VectorN containing a sequence of increasing integers in a range.

    Return a VectorN containing a sequence of increasing integers in a range.

    skip

    dummy value to set data type

    start

    the start value of the vector, inclusive

    end

    the end value of the vector, exclusive (i.e., the first value not returned)