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
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- ErasedNode
- Function1
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
Concrete Value Members
-
def
andThen[A](g: (Any) ⇒ A): (Any) ⇒ A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def apply(): Any
-
def
apply(x: Any): Any
- Definition Classes
- ErasedNode → Function1
- def composable(that: ErasedNode): Boolean
- def compose(inner: ErasedNode): Option[ErasedNodeComposition]
- def compose(l: List[ErasedNode]): List[ErasedNodeComposition]
-
def
compose[A](g: (A) ⇒ Any): (A) ⇒ Any
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def domain: String
-
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.
-
def
node[T](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[T]): Node[T]
Get the typed node without its computation.
- def range: String
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any
- def unsafeCompose(inner: ErasedNode): ErasedNodeComposition
-
def
unsafeEval(implicit sc: SparkContext): Any
Compute the result of the node.