Packages

trait ErasedNode extends (Any) ⇒ Any

Erased node type, represents a typed Node with types kept inside. It is a function, as it should operate with nodes constructor types and to "compose" untyped nodes.

Linear Supertypes
(Any) ⇒ Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ErasedNode
  2. Function1
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def domainTpe: scala.reflect.api.JavaUniverse.Type
  2. abstract def maybeApply(x: Any): Option[Node[Any]]
  3. abstract def rangeTpe: scala.reflect.api.JavaUniverse.Type

Concrete Value Members

  1. def andThen[A](g: (Any) ⇒ A): (Any) ⇒ A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  2. def apply(): Any
  3. def apply(x: Any): Any
    Definition Classes
    ErasedNode → Function1
  4. def composable(that: ErasedNode): Boolean
  5. def compose(inner: ErasedNode): Option[ErasedNodeComposition]
  6. def compose(l: List[ErasedNode]): List[ErasedNodeComposition]
  7. def compose[A](g: (A) ⇒ Any): (A) ⇒ Any
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  8. def domain: String
  9. def eval[T](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T], sc: SparkContext): T

    Compute the result of the node and cast to type T.

  10. def node[T](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Node[T]

    Get the typed node without its computation.

  11. def range: String
  12. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any
  13. def unsafeCompose(inner: ErasedNode): ErasedNodeComposition
  14. def unsafeEval(implicit sc: SparkContext): Any

    Compute the result of the node.