object Index
- Alphabetic
- By Inheritance
- Index
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- 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
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- 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]
- 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
- 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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- 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
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()