io
getquill
package
getquill
Type Members
-
sealed
trait
Action[E] extends QAC[E, Any]
-
sealed
trait
ActionReturning[E, +Output] extends QAC[E, Output] with Action[E]
-
class
AstPrinter extends Walker
-
sealed
trait
BatchAction[+A <: QAC[_, _] with Action[_]] extends AnyRef
-
-
-
-
-
-
sealed
trait
Delete[E] extends QAC[E, Nothing] with Action[E]
-
trait
Embedded extends AnyRef
-
-
-
-
sealed
trait
Insert[E] extends QAC[E, Nothing] with Action[E]
-
sealed
trait
JoinQuery[A, B, R] extends Query[R]
-
-
-
case class
MappedEncoding[I, O](f: (I) ⇒ O) extends Product with Serializable
-
-
-
-
-
-
-
-
-
-
-
-
-
case class
Ord[T](ord: Ordering) extends Product with Serializable
-
-
-
-
trait
PseudoAst extends AnyRef
-
sealed
trait
QAC[ModificationEntity, +OutputEntity] extends AnyRef
-
sealed
trait
Query[+T] extends QAC[Nothing, T]
-
-
sealed
trait
ReturnAction extends AnyRef
-
-
-
-
sealed
trait
Update[E] extends QAC[E, Nothing] with Action[E]
-
Value Members
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
object
Ord extends Serializable
-
-
-
-
-
-
-
-
-
package
ast
-
-
package
dsl
-
-
-
-
-
package
sql
-
A trait to be used by elements that are not proper AST elements but should still be treated as though they were in the case where
traceAstSimple
is enabled (i.e. their toString method should be used instead of the standard qprint AST printing)