Package

io.getquill

quat

Permalink

package quat

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Quat extends AnyRef

    Permalink

    This represents a simplified Sql-Type.

    This represents a simplified Sql-Type. Since it applies to all dialects, it is called Quill-Application-Type hence Quat. Quats represent the types of the Quill AST allowing us to know what fields exist on an Ident and more concretely what can be done with it. Currently they are:

    • Quat.Product - Something that contains a list of fields e.g. case class Person(name:String,age:Int) would be Product("name"->Quat.Value, "age"->Quat.Value)
    • Quat.Value - A value level Quat e.g. Int, Long, String etc... More specific Quat.Value types are planned int the future.
    • Quat.Generic - A Quat representing a type whose value is not known yet.
    • Quat.Null - A Quat representing a null value.

    Quats are generally treated as through they are immutable although there are dynamic/mutable variables in some places (e.g. Product uses LinkedHashSet and var) due to various other issues (e.g. performance, serialization). It is assumed that all operations Quats have referential transparency.

Value Members

  1. object BooQuatSerializer

    Permalink
  2. object KryoQuatSerializer

    Permalink
  3. object LinkedHashMapOps

    Permalink
  4. object Quat

    Permalink

Ungrouped