Class

io.radanalytics.silex.feature.indexfunction

InverseIndexFunction

Related Doc: package indexfunction

Permalink

abstract class InverseIndexFunction[V] extends PartialFunction[V, Int] with Serializable

The inverse of an InvertibleIndexFunction.

V

The domain type of this function. Also the range of the parent InvertibleIndexFunction.

Linear Supertypes
Serializable, Serializable, PartialFunction[V, Int], (V) ⇒ Int, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InverseIndexFunction
  2. Serializable
  3. Serializable
  4. PartialFunction
  5. Function1
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InverseIndexFunction()

    Permalink

Abstract Value Members

  1. abstract def apply(v1: V): Int

    Permalink
    Definition Classes
    Function1
  2. abstract def domain: Iterator[V]

    Permalink

    Obtain a new iterator over the domain of this function.

    Obtain a new iterator over the domain of this function.

    returns

    An iterator over the domain values of this function. Equivalent to the range of the parent InvertibleIndexFunction.

  3. abstract def isDefinedAt(x: V): Boolean

    Permalink
    Definition Classes
    PartialFunction
  4. abstract def width: Int

    Permalink

    The width of index range.

    The width of index range. Corresponds to the width of the parent InvertibleIndexFunction.

Concrete 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 andThen[C](k: (Int) ⇒ C): PartialFunction[V, C]

    Permalink
    Definition Classes
    PartialFunction → Function1
  5. def applyOrElse[A1 <: V, B1 >: Int](x: A1, default: (A1) ⇒ B1): B1

    Permalink
    Definition Classes
    PartialFunction
  6. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def compose[A](g: (A) ⇒ V): (A) ⇒ Int

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  9. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  15. def lift: (V) ⇒ Option[Int]

    Permalink
    Definition Classes
    PartialFunction
  16. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  19. def orElse[A1 <: V, B1 >: Int](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Permalink
    Definition Classes
    PartialFunction
  20. final def range: Iterator[Int]

    Permalink

    Obtain a new iterator over the range values of this function.

    Obtain a new iterator over the range values of this function.

    returns

    An iterator over the range values of this function. Equivalent to the domain of the parent InvertibleIndexFunction.

  21. def runWith[U](action: (Int) ⇒ U): (V) ⇒ Boolean

    Permalink
    Definition Classes
    PartialFunction
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. final def toMap: Map[V, Int]

    Permalink

    Obtain a Scala Map that is equivalent to this function.

    Obtain a Scala Map that is equivalent to this function.

    returns

    A Map that maps domain values into their corresponding index values

  24. def toString(): String

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

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from PartialFunction[V, Int]

Inherited from (V) ⇒ Int

Inherited from AnyRef

Inherited from Any

Ungrouped