Expr

object Expr extends ExprBoilerplate
Companion
class
class Object
trait Matchable
class Any

Type members

Inherited classlikes

final class Apply1[A](mkExpr: String => String)
Inherited from
ExprBoilerplate
final class Apply10[A, B, C, D, E, F, G, H, I, J](mkExpr: (String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply11[A, B, C, D, E, F, G, H, I, J, K](mkExpr: (String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply12[A, B, C, D, E, F, G, H, I, J, K, L](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply13[A, B, C, D, E, F, G, H, I, J, K, L, M](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply14[A, B, C, D, E, F, G, H, I, J, K, L, M, N](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply2[A, B](mkExpr: (String, String) => String)
Inherited from
ExprBoilerplate
final class Apply20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply22[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply3[A, B, C](mkExpr: (String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply4[A, B, C, D](mkExpr: (String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply5[A, B, C, D, E](mkExpr: (String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply6[A, B, C, D, E, F](mkExpr: (String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply7[A, B, C, D, E, F, G](mkExpr: (String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply8[A, B, C, D, E, F, G, H](mkExpr: (String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate
final class Apply9[A, B, C, D, E, F, G, H, I](mkExpr: (String, String, String, String, String, String, String, String, String) => String)
Inherited from
ExprBoilerplate

Types

type Result[+A] = Either[ExprError, A]

Inherited types

final protected type X = AnyRef { type A = Unit; }
Inherited from
ExprBoilerplate

Value members

Concrete methods

def apply(source: CharSequence)(implicit language: Language): Expr[Value]
def apply(source: => Source): Expr[Value]
def cosequence[F <: ([x] =>> Iterable[x]), A](fea: F[Expr[A]])(implicit cbf: BuildFrom[F[Expr[A]], A, F[A]]): Expr[F[A]]
def cosequenceAndDiscard[A](es: Iterable[Expr[A]]): Expr[Unit]
def distribute[F <: ([x] =>> Iterable[x]), A, B](fa: F[A])(f: A => Expr[B])(implicit cbf: BuildFrom[F[A], B, F[B]]): Expr[F[B]]
def distributeAndDiscard[A, B](fa: Iterable[A])(f: A => Expr[B]): Expr[Unit]
def fail[A](e: ExprError): Expr[A]
def fileOnClasspath(filename: String)(implicit lang: Language): Expr[Option[Value]]
def lazily[A](a: => A): Expr[A]
def lift[A](f: Context => A): Expr[A]
def point[A](a: => A): Expr[A]
def pure[A](a: A): Expr[A]
def requireFileOnClasspath(filename: String)(implicit lang: Language): Expr[Value]
def runAll(es: Expr[Any]*): Expr[Unit]
def suspend[A](e: => Expr[A]): Expr[A]
def tailrec[A, B](init: => A)(f: A => Expr[Either[A, B]]): Expr[B]

Inherited methods

final def apply1[A](mkExpr: String => String): Apply1[A]
Inherited from
ExprBoilerplate
final def apply1[A](mkExpr: String => String, a: A)(implicit lang: Language, A: ExprParam[A]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply10[A, B, C, D, E, F, G, H, I, J](mkExpr: (String, String, String, String, String, String, String, String, String, String) => String): Apply10[A, B, C, D, E, F, G, H, I, J]
Inherited from
ExprBoilerplate
final def apply10[A, B, C, D, E, F, G, H, I, J](mkExpr: (String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply11[A, B, C, D, E, F, G, H, I, J, K](mkExpr: (String, String, String, String, String, String, String, String, String, String, String) => String): Apply11[A, B, C, D, E, F, G, H, I, J, K]
Inherited from
ExprBoilerplate
final def apply11[A, B, C, D, E, F, G, H, I, J, K](mkExpr: (String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply12[A, B, C, D, E, F, G, H, I, J, K, L](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply12[A, B, C, D, E, F, G, H, I, J, K, L]
Inherited from
ExprBoilerplate
final def apply12[A, B, C, D, E, F, G, H, I, J, K, L](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply13[A, B, C, D, E, F, G, H, I, J, K, L, M](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply13[A, B, C, D, E, F, G, H, I, J, K, L, M]
Inherited from
ExprBoilerplate
final def apply13[A, B, C, D, E, F, G, H, I, J, K, L, M](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply14[A, B, C, D, E, F, G, H, I, J, K, L, M, N](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply14[A, B, C, D, E, F, G, H, I, J, K, L, M, N]
Inherited from
ExprBoilerplate
final def apply14[A, B, C, D, E, F, G, H, I, J, K, L, M, N](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O]
Inherited from
ExprBoilerplate
final def apply15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P]
Inherited from
ExprBoilerplate
final def apply16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q]
Inherited from
ExprBoilerplate
final def apply17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R]
Inherited from
ExprBoilerplate
final def apply18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S]
Inherited from
ExprBoilerplate
final def apply19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply2[A, B](mkExpr: (String, String) => String): Apply2[A, B]
Inherited from
ExprBoilerplate
final def apply2[A, B](mkExpr: (String, String) => String, a: A, b: B)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T]
Inherited from
ExprBoilerplate
final def apply20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S, t: T)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S], T: ExprParam[T]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U]
Inherited from
ExprBoilerplate
final def apply21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S, t: T, u: U)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S], T: ExprParam[T], U: ExprParam[U]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply22[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String): Apply22[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V]
Inherited from
ExprBoilerplate
final def apply22[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](mkExpr: (String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S, t: T, u: U, v: V)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S], T: ExprParam[T], U: ExprParam[U], V: ExprParam[V]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply3[A, B, C](mkExpr: (String, String, String) => String): Apply3[A, B, C]
Inherited from
ExprBoilerplate
final def apply3[A, B, C](mkExpr: (String, String, String) => String, a: A, b: B, c: C)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply4[A, B, C, D](mkExpr: (String, String, String, String) => String): Apply4[A, B, C, D]
Inherited from
ExprBoilerplate
final def apply4[A, B, C, D](mkExpr: (String, String, String, String) => String, a: A, b: B, c: C, d: D)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply5[A, B, C, D, E](mkExpr: (String, String, String, String, String) => String): Apply5[A, B, C, D, E]
Inherited from
ExprBoilerplate
final def apply5[A, B, C, D, E](mkExpr: (String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply6[A, B, C, D, E, F](mkExpr: (String, String, String, String, String, String) => String): Apply6[A, B, C, D, E, F]
Inherited from
ExprBoilerplate
final def apply6[A, B, C, D, E, F](mkExpr: (String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply7[A, B, C, D, E, F, G](mkExpr: (String, String, String, String, String, String, String) => String): Apply7[A, B, C, D, E, F, G]
Inherited from
ExprBoilerplate
final def apply7[A, B, C, D, E, F, G](mkExpr: (String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply8[A, B, C, D, E, F, G, H](mkExpr: (String, String, String, String, String, String, String, String) => String): Apply8[A, B, C, D, E, F, G, H]
Inherited from
ExprBoilerplate
final def apply8[A, B, C, D, E, F, G, H](mkExpr: (String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H]): Expr[Value]
Inherited from
ExprBoilerplate
final def apply9[A, B, C, D, E, F, G, H, I](mkExpr: (String, String, String, String, String, String, String, String, String) => String): Apply9[A, B, C, D, E, F, G, H, I]
Inherited from
ExprBoilerplate
final def apply9[A, B, C, D, E, F, G, H, I](mkExpr: (String, String, String, String, String, String, String, String, String) => String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn1[A](fnName: String, a: A)(implicit lang: Language, A: ExprParam[A]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn1[A](fnName: String): Apply1[A]
Inherited from
ExprBoilerplate
final def fn10[A, B, C, D, E, F, G, H, I, J](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn10[A, B, C, D, E, F, G, H, I, J](fnName: String): Apply10[A, B, C, D, E, F, G, H, I, J]
Inherited from
ExprBoilerplate
final def fn11[A, B, C, D, E, F, G, H, I, J, K](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn11[A, B, C, D, E, F, G, H, I, J, K](fnName: String): Apply11[A, B, C, D, E, F, G, H, I, J, K]
Inherited from
ExprBoilerplate
final def fn12[A, B, C, D, E, F, G, H, I, J, K, L](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn12[A, B, C, D, E, F, G, H, I, J, K, L](fnName: String): Apply12[A, B, C, D, E, F, G, H, I, J, K, L]
Inherited from
ExprBoilerplate
final def fn13[A, B, C, D, E, F, G, H, I, J, K, L, M](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn13[A, B, C, D, E, F, G, H, I, J, K, L, M](fnName: String): Apply13[A, B, C, D, E, F, G, H, I, J, K, L, M]
Inherited from
ExprBoilerplate
final def fn14[A, B, C, D, E, F, G, H, I, J, K, L, M, N](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn14[A, B, C, D, E, F, G, H, I, J, K, L, M, N](fnName: String): Apply14[A, B, C, D, E, F, G, H, I, J, K, L, M, N]
Inherited from
ExprBoilerplate
final def fn15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O](fnName: String): Apply15[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O]
Inherited from
ExprBoilerplate
final def fn16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P](fnName: String): Apply16[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P]
Inherited from
ExprBoilerplate
final def fn17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q](fnName: String): Apply17[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q]
Inherited from
ExprBoilerplate
final def fn18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R](fnName: String): Apply18[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R]
Inherited from
ExprBoilerplate
final def fn19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S](fnName: String): Apply19[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S]
Inherited from
ExprBoilerplate
final def fn2[A, B](fnName: String, a: A, b: B)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn2[A, B](fnName: String): Apply2[A, B]
Inherited from
ExprBoilerplate
final def fn20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S, t: T)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S], T: ExprParam[T]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T](fnName: String): Apply20[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T]
Inherited from
ExprBoilerplate
final def fn21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S, t: T, u: U)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S], T: ExprParam[T], U: ExprParam[U]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U](fnName: String): Apply21[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U]
Inherited from
ExprBoilerplate
final def fn22[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I, j: J, k: K, l: L, m: M, n: N, o: O, p: P, q: Q, r: R, s: S, t: T, u: U, v: V)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I], J: ExprParam[J], K: ExprParam[K], L: ExprParam[L], M: ExprParam[M], N: ExprParam[N], O: ExprParam[O], P: ExprParam[P], Q: ExprParam[Q], R: ExprParam[R], S: ExprParam[S], T: ExprParam[T], U: ExprParam[U], V: ExprParam[V]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn22[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V](fnName: String): Apply22[A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V]
Inherited from
ExprBoilerplate
final def fn3[A, B, C](fnName: String, a: A, b: B, c: C)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn3[A, B, C](fnName: String): Apply3[A, B, C]
Inherited from
ExprBoilerplate
final def fn4[A, B, C, D](fnName: String, a: A, b: B, c: C, d: D)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn4[A, B, C, D](fnName: String): Apply4[A, B, C, D]
Inherited from
ExprBoilerplate
final def fn5[A, B, C, D, E](fnName: String, a: A, b: B, c: C, d: D, e: E)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn5[A, B, C, D, E](fnName: String): Apply5[A, B, C, D, E]
Inherited from
ExprBoilerplate
final def fn6[A, B, C, D, E, F](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn6[A, B, C, D, E, F](fnName: String): Apply6[A, B, C, D, E, F]
Inherited from
ExprBoilerplate
final def fn7[A, B, C, D, E, F, G](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn7[A, B, C, D, E, F, G](fnName: String): Apply7[A, B, C, D, E, F, G]
Inherited from
ExprBoilerplate
final def fn8[A, B, C, D, E, F, G, H](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn8[A, B, C, D, E, F, G, H](fnName: String): Apply8[A, B, C, D, E, F, G, H]
Inherited from
ExprBoilerplate
final def fn9[A, B, C, D, E, F, G, H, I](fnName: String, a: A, b: B, c: C, d: D, e: E, f: F, g: G, h: H, i: I)(implicit lang: Language, A: ExprParam[A], B: ExprParam[B], C: ExprParam[C], D: ExprParam[D], E: ExprParam[E], F: ExprParam[F], G: ExprParam[G], H: ExprParam[H], I: ExprParam[I]): Expr[Value]
Inherited from
ExprBoilerplate
final def fn9[A, B, C, D, E, F, G, H, I](fnName: String): Apply9[A, B, C, D, E, F, G, H, I]
Inherited from
ExprBoilerplate

Concrete fields

val DefaultAwaitTimeout: FiniteDuration
val unit: Expr[Unit]