AppliedCompiledFunction

slick.lifted.AppliedCompiledFunction
class AppliedCompiledFunction[PU, R <: Rep[_], RU](val param: PU, function: CompiledFunction[_, _, PU, R, RU], val profile: BasicProfile) extends RunnableCompiled[R, RU]

Attributes

Source
Compiled.scala
Graph
Supertypes
trait RunnableCompiled[R, RU]
trait Compiled[R]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

Attributes

Source
Compiled.scala
def compiledInsert: Any

Attributes

Source
Compiled.scala

Attributes

Source
Compiled.scala

Attributes

Source
Compiled.scala

Inherited methods

def flatMap[U <: Compiled[_]](f: R => U): U

Perform a transformation of the underlying value. The computed Compiled value is returned unmodified.

Perform a transformation of the underlying value. The computed Compiled value is returned unmodified.

Attributes

Inherited from:
Compiled
Source
Compiled.scala
def map[U, C <: Compiled[U]](f: R => U)(implicit uCompilable: Compilable[U, C]): C

Perform a transformation of the underlying value. The computed value must be Compilable. The resulting Compiled instance will be recompiled when needed. It does not benefit from this instance already containing the compiled state.

Perform a transformation of the underlying value. The computed value must be Compilable. The resulting Compiled instance will be recompiled when needed. It does not benefit from this instance already containing the compiled state.

Attributes

Inherited from:
Compiled
Source
Compiled.scala

Concrete fields

lazy val extract: R

Return the underlying query or query function. It can be safely extracted for reuse without caching the compiled representation.

Return the underlying query or query function. It can be safely extracted for reuse without caching the compiled representation.

Attributes

Source
Compiled.scala
val param: PU

Attributes

Source
Compiled.scala

The profile which is used for compiling the query.

The profile which is used for compiling the query.

Attributes

Source
Compiled.scala