Object/Class

io.radanalytics.silex.feature.indexfunction

IndexFunction

Related Docs: class IndexFunction | package indexfunction

Permalink

object IndexFunction extends Serializable

Factory methods for generating index functions

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

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. def apply[V](wid: Int, map: Map[Int, V]): IndexFunction[V]

    Permalink

    Create an index function from a Scala Map of indices to values

    Create an index function from a Scala Map of indices to values

    wid

    The index inverval width

    map

    The Scala Map

    returns

    An index function with domain equivalent to map.keysIterator, and subset of [0, wid), where f(j) = map(j), for any j defined on the map, and undefined elsewhere

  5. def apply[V](wid: Int, pairs: (Int, V)*): IndexFunction[V]

    Permalink

    Create an index function from ordered pairs (j0, v0), (j1, v1), ...

    Create an index function from ordered pairs (j0, v0), (j1, v1), ...

    wid

    The index interval width

    pairs

    Zero or more pairs (j0, v0), (j1, v1), ...

    returns

    An index function with domain { j0, j1, ...} a subset of [0, wid), where f(j0) = v0, f(j1 = v1), ... and undefined elsewhere

  6. def apply[V](vals: IndexedSeq[V]): IndexFunction[V]

    Permalink

    Create an index function from a Scala IndexedSeq

    Create an index function from a Scala IndexedSeq

    vals

    The indexed sequence of values

    returns

    An index function over interval [0, vals.length) where f(j) = vals(j)

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def constant[V](v: V, wid: Int): IndexFunction[V]

    Permalink

    Obtain an index function that is constant over its interval

    Obtain an index function that is constant over its interval

    v

    The constant value

    wid

    The interval width

    returns

    an index function that returns (v) over all index values [0, wid)

  10. def empty[V]: IndexFunction[V]

    Permalink

    Obtain an empty index function.

    Obtain an empty index function.

    returns

    An index function over the empty interval [0, 0), defined over no values

  11. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def hashCode(): Int

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

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

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. def undefined[V](wid: Int): IndexFunction[V]

    Permalink

    Obtain an index function that is undefined over its interval

    Obtain an index function that is undefined over its interval

    wid

    The function's index interval width

    returns

    An index function that is not defined over any indices on its interval [0, wid)

  23. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped