Packages

c

slick.lifted

AppliedCompiledFunction

class AppliedCompiledFunction[PU, R <: Rep[_], RU] extends RunnableCompiled[R, RU]

Source
Compiled.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AppliedCompiledFunction
  2. RunnableCompiled
  3. Compiled
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AppliedCompiledFunction(param: PU, function: CompiledFunction[_, _, PU, R, RU], profile: BasicProfile)

Value Members

  1. def compiledDelete: Node
  2. def compiledInsert: Any
  3. def compiledQuery: Node
  4. def compiledUpdate: Node
  5. lazy val extract: R

    Return the underlying query or query function.

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

    Definition Classes
    AppliedCompiledFunctionCompiled
  6. def flatMap[U <: Compiled[_]](f: (R) => U): U

    Perform a transformation of the underlying value.

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

    Definition Classes
    Compiled
  7. def map[U, C <: Compiled[U]](f: (R) => U)(implicit uCompilable: Compilable[U, C]): C

    Perform a transformation of the underlying value.

    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.

    Definition Classes
    Compiled
  8. val param: PU
  9. val profile: BasicProfile

    The profile which is used for compiling the query.

    The profile which is used for compiling the query.

    Definition Classes
    AppliedCompiledFunctionCompiled