Packages

  • package root
    Definition Classes
    root
  • package quasar
    Definition Classes
    root
  • package qscript

    The various representations of an arbitrary query, as seen by the filesystem connectors, along with the operations for dealing with them.

    The various representations of an arbitrary query, as seen by the filesystem connectors, along with the operations for dealing with them.

    There are a few patterns that are worth noting: - (src: A, ..., lBranch: FreeQS[T], rBranch: FreeQS[T], ...) – used in operations that combine multiple data sources (notably joins and unions). This holds the divergent parts of the data sources in the branches, with SrcHole indicating a reference back to the common src of the two branches. There is not required to be a SrcHole. - Free[F, A] – we use this structure as a restricted form of variable binding, where F is some pattern functor, and A is some enumeration that has a specific referent. E.g., FreeMap is a recursive structure of MapFunc that has a single “variable”, SrcHole, which (usually) refers to the src parameter of that operation. JoinFunc, FreeQS, and the repair parameter to Reduce behave similarly. - We use the type parameter QS[_] to indicate QScript, as well as the type parameters IN[_] and OUT[_] to indicate the input and output coproducts in transformations where they can be different.

    Definition Classes
    quasar
  • package analysis
    Definition Classes
    qscript
  • Cardinality
  • Cost
  • DeepShape
  • DeepShapeInstances
  • Outline
  • OutlineInstances
  • ShapePreserving

object Outline extends OutlineInstances with Serializable

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

Type Members

  1. trait AllOps[F[_], A] extends Ops[F, A]
  2. sealed abstract class Figure extends AnyRef
  3. trait Ops[F[_], A] extends AnyRef
  4. type Shape = Free[EJson, Figure]
  5. trait ToOutlineOps extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[F[_]](implicit instance: Outline[F]): Outline[F]
    Annotations
    @inline()
  5. val arrF: Shape
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. implicit def constDeadEnd: Outline[[β$19$]Const[DeadEnd, β$19$]]
    Definition Classes
    OutlineInstances
  9. implicit def constRead[A]: Outline[[β$17$]Const[Read[A], β$17$]]
    Definition Classes
    OutlineInstances
  10. implicit def constShiftedRead[A]: Outline[[β$18$]Const[ShiftedRead[A], β$18$]]
    Definition Classes
    OutlineInstances
  11. implicit def coproduct[F[_], G[_]](implicit F: Outline[F], G: Outline[G]): Outline[[γ$0$]Coproduct[F, G, γ$0$]]
    Definition Classes
    OutlineInstances
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. implicit def equiJoin[T[_[_]]](implicit arg0: BirecursiveT[T]): Outline[[β$12$]EquiJoin[T, β$12$]]
    Definition Classes
    OutlineInstances
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. implicit def freeEJsonEqual[A](implicit arg0: Equal[A]): Equal[Free[EJson, A]]
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val mapF: Shape
  21. implicit def mapFuncCore[T[_[_]]](implicit arg0: BirecursiveT[T]): Outline[[β$3$]MapFuncCore[T, β$3$]]
    Definition Classes
    OutlineInstances
  22. implicit def mapFuncDerived[T[_[_]]]: Outline[[β$15$]MapFuncDerived[T, β$15$]]
    Definition Classes
    OutlineInstances
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def outlineF[F[_], A](fa: Free[F, A])(f: (A) ⇒ Shape)(implicit arg0: Functor[F], O: Outline[F]): Shape
  27. implicit def projectBucket[T[_[_]]]: Outline[[β$16$]ProjectBucket[T, β$16$]]
    Definition Classes
    OutlineInstances
  28. implicit def qScriptCore[T[_[_]]](implicit arg0: BirecursiveT[T]): Outline[[β$6$]QScriptCore[T, β$6$]]
    Definition Classes
    OutlineInstances
    Annotations
    @SuppressWarnings()
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. implicit def thetaJoin[T[_[_]]](implicit arg0: BirecursiveT[T]): Outline[[β$9$]ThetaJoin[T, β$9$]]
    Definition Classes
    OutlineInstances
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. val undefinedF: Shape
  33. val unknownF: Shape
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  37. object Figure
  38. object nonInheritedOps extends ToOutlineOps
  39. object ops
  40. object outline
  41. object outlined

    Annotate a structure with its Shape.

    Annotate a structure with its Shape.

    TODO{matryoshka}: Generalize once matryoshka is updated to 0.21.0+

Inherited from Serializable

Inherited from Serializable

Inherited from OutlineInstances

Inherited from AnyRef

Inherited from Any

Ungrouped