Object/Trait

quasar

LogicalPlan

Related Docs: trait LogicalPlan | package quasar

Permalink

object LogicalPlan extends Serializable

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

Type Members

  1. final case class ConstantF[A](data: Data) extends LogicalPlan[A] with Product with Serializable

    Permalink
  2. final case class ConstrainedPlan(inferred: Type, constraints: Predef.List[NamedConstraint], plan: Fix[LogicalPlan]) extends Product with Serializable

    Permalink
  3. final case class FreeF[A](name: Predef.Symbol) extends LogicalPlan[A] with Product with Serializable

    Permalink
  4. final case class InvokeF[A, N <: Nat](func: GenericFunc[N], values: Input[A, N]) extends LogicalPlan[A] with Product with Serializable

    Permalink
  5. final case class LetF[A](let: Predef.Symbol, form: A, in: A) extends LogicalPlan[A] with Product with Serializable

    Permalink
  6. final case class NamedConstraint(name: Predef.Symbol, inferred: Type, term: Fix[LogicalPlan]) extends Product with Serializable

    Permalink
  7. final case class ReadF[A](path: FPath) extends LogicalPlan[A] with Product with Serializable

    Permalink
  8. type SemDisj[A] = \/[NonEmptyList[SemanticError], A]

    Permalink
  9. type SemNames[A] = IndexedStateT[SemDisj, NameGen, NameGen, A]

    Permalink
  10. type SemValidation[A] = Validation[NonEmptyList[SemanticError], A]

    Permalink
  11. final case class TypecheckF[A](expr: A, typ: Type, cont: A, fallback: A) extends LogicalPlan[A] with Product with Serializable

    Permalink
  12. type Typed[F[_]] = Cofree[F, Type]

    Permalink

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. object Constant

    Permalink
  5. implicit val EqualFLogicalPlan: EqualF[LogicalPlan]

    Permalink
  6. object Free

    Permalink
  7. object Invoke

    Permalink
  8. object InvokeFUnapply

    Permalink
  9. object Let

    Permalink
  10. implicit val LogicalPlanBinder: Binder[LogicalPlan]

    Permalink
  11. implicit val LogicalPlanTraverse: Traverse[LogicalPlan]

    Permalink
  12. implicit val LogicalPlanUnzip: Unzip[LogicalPlan]

    Permalink
  13. object Read

    Permalink
  14. implicit val RenderTreeLogicalPlan: Delay[RenderTree, LogicalPlan]

    Permalink
  15. object Typecheck

    Permalink
  16. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  17. val checkTypesƒ: ((Type, LogicalPlan[ConstrainedPlan])) ⇒ NameT[SemDisj, ConstrainedPlan]

    Permalink
  18. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def ensureCorrectTypes(term: Fix[LogicalPlan]): ValidationNel[SemanticError, Fix[LogicalPlan]]

    Permalink
  20. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def freshName(prefix: Predef.String): State[NameGen, Predef.Symbol]

    Permalink
  24. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  26. def inferTypes(typ: Type, term: Fix[LogicalPlan]): SemValidation[Typed[LogicalPlan]]

    Permalink
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. def lpParaZygoHisto[A, B]: (Fix[LogicalPlan]) ⇒ ((LogicalPlan[(Fix[LogicalPlan], B)]) ⇒ B, (LogicalPlan[Cofree[LogicalPlan, (B, A)]]) ⇒ scalaz.Scalaz.Id[A]) ⇒ scalaz.Scalaz.Id[A]

    Permalink
  29. def lpParaZygoHistoM[M[_], A, B](t: Fix[LogicalPlan])(f: (LogicalPlan[(Fix[LogicalPlan], B)]) ⇒ B, g: (LogicalPlan[Cofree[LogicalPlan, (B, A)]]) ⇒ M[A])(implicit arg0: Monad[M]): M[A]

    Permalink
  30. def lpParaZygoHistoS[S, A, B]: (Fix[LogicalPlan]) ⇒ ((LogicalPlan[(Fix[LogicalPlan], B)]) ⇒ B, (LogicalPlan[Cofree[LogicalPlan, (B, A)]]) ⇒ IndexedStateT[[+X]X, S, S, A]) ⇒ IndexedStateT[[+X]X, S, S, A]

    Permalink
  31. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. def normalizeLets(t: Fix[LogicalPlan]): Fix[LogicalPlan]

    Permalink
  33. val normalizeLetsƒ: (LogicalPlan[Fix[LogicalPlan]]) ⇒ Predef.Option[LogicalPlan[Fix[LogicalPlan]]]

    Permalink

    Per the following: 1.

    Per the following: 1. Successive Lets are re-associated to the right: (let a = (let b = x1 in x2) in x3) becomes (let b = x1 in (let a = x2 in x3)) 2. Lets are "hoisted" outside of Invoke and Typecheck nodes: (add (let a = x1 in x2) (let b = x3 in x4)) becomes (let a = x1 in (let b = x3 in (add x2 x4)) Note that this is safe only if all bound names are unique; otherwise it could create spurious shadowing. normalizeTempNames is recommended. NB: at the moment, Lets are only hoisted one level.

  34. def normalizeTempNames(t: Fix[LogicalPlan]): Fix[LogicalPlan]

    Permalink
  35. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  37. def paths(lp: Fix[LogicalPlan]): Predef.Set[FPath]

    Permalink

    The set of paths referenced in the given plan.

  38. def rename[M[_]](f: (Predef.Symbol) ⇒ M[Predef.Symbol])(t: Fix[LogicalPlan])(implicit arg0: Monad[M]): M[Fix[LogicalPlan]]

    Permalink
  39. def renameƒ[M[_]](f: (Predef.Symbol) ⇒ M[Predef.Symbol])(implicit arg0: Monad[M]): ((Predef.Map[Predef.Symbol, Predef.Symbol], Fix[LogicalPlan])) ⇒ M[LogicalPlan[(Predef.Map[Predef.Symbol, Predef.Symbol], Fix[LogicalPlan])]]

    Permalink
  40. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. 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