Object/Class

framian

Index

Related Docs: class Index | package framian

Permalink

object Index

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

Type Members

  1. trait Cogrouper[K] extends AnyRef

    Permalink

    Cogrouper provides the abstraction used by Index.cogroup to work with the result of a cogroup.

    Cogrouper provides the abstraction used by Index.cogroup to work with the result of a cogroup. Essentially, the cogroup will initiate some state, then perform a cogroup on the 2 Indexes, with each unique key resulting in one call to cogroup. The reason the signature is a bit weird, with the start/end offsets being passed in is to avoid copying and allocation where possible. All implementations of Index can perform this operation efficiently.

  2. abstract class GenericJoin[K] extends Cogrouper[K]

    Permalink
  3. trait Grouper[K] extends AnyRef

    Permalink
  4. final class IndexBuilder[K] extends Builder[(K, Int), Index[K]]

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object GenericJoin

    Permalink
  5. def apply[K](keys: Array[K], indices: Array[Int])(implicit arg0: Order[K], arg1: ClassTag[K]): Index[K]

    Permalink
  6. def apply[K](pairs: (K, Int)*)(implicit arg0: Order[K], arg1: ClassTag[K]): Index[K]

    Permalink
  7. def apply[K](keys: Array[K])(implicit arg0: Order[K], arg1: ClassTag[K]): Index[K]

    Permalink
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. implicit def cbf[K](implicit arg0: Order[K], arg1: ClassTag[K]): CanBuildFrom[Index[_], (K, Int), Index[K]]

    Permalink
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def cogroup[K](lhs: Index[K], rhs: Index[K])(cogrouper: Cogrouper[K])(implicit arg0: Order[K]): State

    Permalink
  12. def empty[K](implicit arg0: Order[K], arg1: ClassTag[K]): Index[K]

    Permalink
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def fromKeys[K](keys: K*)(implicit arg0: Order[K], arg1: ClassTag[K]): Index[K]

    Permalink
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def group[K](index: Index[K])(grouper: Grouper[K])(implicit arg0: Order[K]): State

    Permalink
  19. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. def newBuilder[K](implicit arg0: Order[K], arg1: ClassTag[K]): IndexBuilder[K]

    Permalink
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped