IndexMaker

org.saddle.index.IndexMaker
See theIndexMaker companion object
trait IndexMaker[I, O]

An IndexMaker takes some input of type I and returns an Index whose elements are of type O.

The basic use case is to take a Tuple,,N,, of Seq-like instances and return an Index whose entries are instances of Tuple,,N,, corresponding to the elements of the original Seqs.

Attributes

I

Type of input with which to make index

O

Type of contents of output index

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

def apply(in: I): Index[O]