Packages

  • package root
    Definition Classes
    root
  • package quasar
    Definition Classes
    root
  • package config
    Definition Classes
    quasar
  • ConfigError
  • FsPath
  • OS
  • package connector
    Definition Classes
    quasar
  • package fp
    Definition Classes
    quasar
  • package fs
    Definition Classes
    quasar
  • 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
p

quasar

config

package config

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. config
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type CfgErr[A] = Failure[ConfigError, A]
  2. type CfgErrT[F[_], A] = EitherT[F, ConfigError, A]
  3. type CfgTask[A] = EitherT[Task, ConfigError, A]
  4. sealed abstract class ConfigError extends AnyRef
  5. type FsFile = FsPath[File, Sandboxed]
  6. sealed abstract class FsPath[T, S] extends AnyRef
  7. sealed abstract class OS extends AnyRef

Value Members

  1. object ConfigError
  2. object FsPath
  3. object OS

Inherited from AnyRef

Inherited from Any

Ungrouped