Packages

object Index

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Index
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class IndexException(err: String) extends RuntimeException with Product with Serializable

    Provides an index-specific exception

    Provides an index-specific exception

    err

    Error message

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[C](values: C*)(implicit arg0: ST[C], arg1: ORD[C]): Index[C]

    Factory method to create an index from a sequence of elements, eg

    Factory method to create an index from a sequence of elements, eg

    Index(1,2,3)
    Index(IndexedSeq(1,2,3) : _*)
    C

    Type of elements in Seq

    values

    Seq[C]

  5. def apply[C](arr: Array[C])(implicit arg0: ST[C], arg1: ORD[C]): Index[C]

    Factory method to create an index from an array of elements

    Factory method to create an index from an array of elements

    C

    Type of elements in array

    arr

    Array

  6. def apply[C](values: Vec[C])(implicit arg0: ST[C], arg1: ORD[C]): Index[C]

    Factory method to create an index from a Vec of elements

    Factory method to create an index from a Vec of elements

    C

    Type of elements in Vec

    values

    Vec

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. def empty[C](implicit arg0: ST[C], arg1: ORD[C]): Index[C]

    Factor method to create an empty Index

    Factor method to create an empty Index

    C

    type of Index

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def make[I, O](values: I)(implicit ev: IndexMaker[I, O]): Index[O]

    Factory method to create an Index; the basic use case is to construct a multi-level index (i.e., an Index of Tuples) via a Tuple of Vecs.

    Factory method to create an Index; the basic use case is to construct a multi-level index (i.e., an Index of Tuples) via a Tuple of Vecs.

    For instance:

    Index.make(vec.rand(10), vec.rand(10))
    I

    The type of the values input

    O

    The type of the elements of the result index

    values

    Values from which to construct the index

    ev

    Implicit evidence of an IndexMaker that can utilize values

  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped