object Remote

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Remote
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ===>[A, B] = UnboundRemoteFunction[A, B]
  2. final case class Binary[In1, In2, Out](left: Remote[In1], right: Remote[In2], operator: BinaryOperators[In1, In2, Out]) extends Remote[Out] with Product with Serializable
  3. final case class Bind[A, B](unbound: Unbound[A], value: Remote[A], inner: Remote[B]) extends Remote[B] with Product with Serializable
  4. final case class Branch[A](predicate: Remote[Boolean], ifTrue: Remote[A], ifFalse: Remote[A]) extends Remote[A] with Product with Serializable
  5. case class CharListToString(remoteString: Remote[List[Char]]) extends Remote[String] with Product with Serializable
  6. final case class Config[A](key: ConfigKey, schema: Schema[A]) extends Remote[A] with Product with Serializable
  7. final case class Cons[A](list: Remote[List[A]], head: Remote[A]) extends Remote[List[A]] with Product with Serializable
  8. final case class Debug[A](inner: Remote[A], message: String, debugMode: DebugMode) extends Remote[A] with Product with Serializable
  9. final case class DurationFromAmount(amount: Remote[Long], temporalUnit: Remote[ChronoUnit]) extends Remote[zio.Duration] with Product with Serializable
  10. final case class Equal[A](left: Remote[A], right: Remote[A]) extends Remote[Boolean] with Product with Serializable
  11. final case class EvaluatedRemoteFunction[-A, +B](result: DynamicValue) extends AnyVal with Product with Serializable
  12. final case class Fail[A](message: String) extends Remote[A] with Product with Serializable
  13. final case class Flow[R, E, A](flow: ZFlow[R, E, A]) extends Remote[ZFlow[R, E, A]] with Product with Serializable
  14. final case class Fold[A, B](list: Remote[List[A]], initial: Remote[B], body: UnboundRemoteFunction[(B, A), B]) extends Remote[B] with Product with Serializable
  15. final case class FoldEither[A, B, C](either: Remote[Either[A, B]], left: UnboundRemoteFunction[A, C], right: UnboundRemoteFunction[B, C]) extends Remote[C] with Product with Serializable
  16. final case class FoldOption[A, B](option: Remote[Option[A]], ifEmpty: Remote[B], ifNonEmpty: UnboundRemoteFunction[A, B]) extends Remote[B] with Product with Serializable
  17. final case class Ignore() extends Remote[Unit] with Product with Serializable
  18. final case class Lazy[A](value: () ⇒ Remote[A]) extends Remote[A] with Product with Serializable
  19. final case class ListToMap[K, V](list: Remote[List[(K, V)]]) extends Remote[Map[K, V]] with Product with Serializable
  20. final case class ListToSet[A](list: Remote[List[A]]) extends Remote[Set[A]] with Product with Serializable
  21. final case class ListToString(list: Remote[List[String]], start: Remote[String], sep: Remote[String], end: Remote[String]) extends Remote[String] with Product with Serializable
  22. final case class Literal[A](value: DynamicValue) extends Remote[A] with Product with Serializable
  23. final case class MapToList[K, V](set: Remote[Map[K, V]]) extends Remote[List[(K, V)]] with Product with Serializable
  24. final case class Nested[A](remote: Remote[A]) extends Remote[Remote[A]] with Product with Serializable
  25. final case class OpticGet[S, A, R](optic: RemoteOptic[S, A], value: Remote[S]) extends Remote[R] with Product with Serializable
  26. final case class OpticSet[S, A, V, R](optic: RemoteOptic[S, A], on: Remote[S], value: Remote[V]) extends Remote[R] with Product with Serializable
  27. final case class Recurse[A, B](id: RecursionId, initial: Remote[A], body: UnboundRemoteFunction[A, B]) extends Remote[B] with Product with Serializable
  28. final case class RecurseWith[A, B](id: RecursionId, value: Remote[A]) extends Remote[B] with Product with Serializable
  29. final case class RemoteEither[A, B](either: Either[Remote[A], Remote[B]]) extends Remote[Either[A, B]] with Product with Serializable
  30. final case class RemoteSome[A](value: Remote[A]) extends Remote[Option[A]] with Product with Serializable
  31. final case class SetToList[A](set: Remote[Set[A]]) extends Remote[List[A]] with Product with Serializable
  32. final case class SortList[A](list: Remote[List[A]], lt: UnboundRemoteFunction[(A, A), Boolean]) extends Remote[List[A]] with Product with Serializable
  33. case class StringToCharList(remoteString: Remote[String]) extends Remote[List[Char]] with Product with Serializable
  34. case class Substitutions(bindings: Map[Unbound[_], Remote[_]]) extends Product with Serializable
  35. final case class Try[A](either: Either[Remote[Throwable], Remote[A]]) extends Remote[scala.util.Try[A]] with Product with Serializable
  36. final case class Tuple10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10] with Product with Serializable
  37. final case class Tuple11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11] with Product with Serializable
  38. final case class Tuple12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12] with Product with Serializable
  39. final case class Tuple13[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13] with Product with Serializable
  40. final case class Tuple14[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14] with Product with Serializable
  41. final case class Tuple15[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15] with Product with Serializable
  42. final case class Tuple16[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15], t16: Remote[T16]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16] with Product with Serializable
  43. final case class Tuple17[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15], t16: Remote[T16], t17: Remote[T17]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17] with Product with Serializable
  44. final case class Tuple18[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15], t16: Remote[T16], t17: Remote[T17], t18: Remote[T18]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18] with Product with Serializable
  45. final case class Tuple19[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15], t16: Remote[T16], t17: Remote[T17], t18: Remote[T18], t19: Remote[T19]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19] with Product with Serializable
  46. final case class Tuple2[T1, T2](t1: Remote[T1], t2: Remote[T2]) extends Remote[(T1, T2)] with Construct[T1, T2] with Product with Serializable
  47. final case class Tuple20[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15], t16: Remote[T16], t17: Remote[T17], t18: Remote[T18], t19: Remote[T19], t20: Remote[T20]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20] with Product with Serializable
  48. final case class Tuple21[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15], t16: Remote[T16], t17: Remote[T17], t18: Remote[T18], t19: Remote[T19], t20: Remote[T20], t21: Remote[T21]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21] with Product with Serializable
  49. final case class Tuple22[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9], t10: Remote[T10], t11: Remote[T11], t12: Remote[T12], t13: Remote[T13], t14: Remote[T14], t15: Remote[T15], t16: Remote[T16], t17: Remote[T17], t18: Remote[T18], t19: Remote[T19], t20: Remote[T20], t21: Remote[T21], t22: Remote[T22]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22] with Product with Serializable
  50. final case class Tuple3[T1, T2, T3](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3]) extends Remote[(T1, T2, T3)] with Construct[T1, T2, T3] with Product with Serializable
  51. final case class Tuple4[T1, T2, T3, T4](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4]) extends Remote[(T1, T2, T3, T4)] with Construct[T1, T2, T3, T4] with Product with Serializable
  52. final case class Tuple5[T1, T2, T3, T4, T5](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5]) extends Remote[(T1, T2, T3, T4, T5)] with Construct[T1, T2, T3, T4, T5] with Product with Serializable
  53. final case class Tuple6[T1, T2, T3, T4, T5, T6](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6]) extends Remote[(T1, T2, T3, T4, T5, T6)] with Construct[T1, T2, T3, T4, T5, T6] with Product with Serializable
  54. final case class Tuple7[T1, T2, T3, T4, T5, T6, T7](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7]) extends Remote[(T1, T2, T3, T4, T5, T6, T7)] with Construct[T1, T2, T3, T4, T5, T6, T7] with Product with Serializable
  55. final case class Tuple8[T1, T2, T3, T4, T5, T6, T7, T8](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8] with Product with Serializable
  56. final case class Tuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9](t1: Remote[T1], t2: Remote[T2], t3: Remote[T3], t4: Remote[T4], t5: Remote[T5], t6: Remote[T6], t7: Remote[T7], t8: Remote[T8], t9: Remote[T9]) extends Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9)] with Construct[T1, T2, T3, T4, T5, T6, T7, T8, T9] with Product with Serializable
  57. final case class TupleAccess[T, A](tuple: Remote[T], n: Int, arity: Int) extends Remote[A] with Product with Serializable
  58. final case class UnCons[A](list: Remote[List[A]]) extends Remote[Option[(A, List[A])]] with Product with Serializable
  59. final case class Unary[In, Out](value: Remote[In], operator: UnaryOperators[In, Out]) extends Remote[Out] with Product with Serializable
  60. final case class Unbound[A](identifier: BindingName) extends Remote[A] with Product with Serializable
  61. final case class UnboundRemoteFunction[A, B] extends Remote[EvaluatedRemoteFunction[A, B]] with Product with Serializable
  62. final case class Variable[A](identifier: RemoteVariableName) extends Remote[A] with Product with Serializable
  63. final case class VariableReference[A](ref: RemoteVariableReference[A]) extends Remote[RemoteVariableReference[A]] with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit def apply[A](value: A)(implicit arg0: Schema[A]): Remote[A]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def bind[A, B](value: Remote[A])(f: (Unbound[A]) ⇒ Remote[B]): Remote[B]
  7. implicit def capturedRemoteToRemote[A, B](f: (Remote[A]) ⇒ Remote[B]): UnboundRemoteFunction[A, B]
  8. def chunk[A](values: Remote[A]*): Remote[Chunk[A]]
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  10. def config[A](key: ConfigKey)(implicit arg0: Schema[A]): Remote[A]
  11. def either[A, B](either: Either[Remote[A], Remote[B]]): Remote[Either[A, B]]
  12. def emptyChunk[A]: Remote[Chunk[A]]
  13. def emptyMap[K, V]: Remote[Map[K, V]]
  14. def emptySet[A]: Remote[Set[A]]
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def fail[A](message: String): Remote[A]
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def fromDynamic[A](dynamicValue: DynamicValue): Remote[A]
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def left[A, B](value: Remote[A]): Remote[Either[A, B]]
  24. def list[A](values: Remote[A]*): Remote[List[A]]
  25. def makeAccessors[A](implicit schema: Schema[A]): Accessors[Lens, Prism, Traversal]

    Constructs accessors that can be used modify remote versions of user defined data types.

  26. def map[K, V](values: Remote[(K, V)]*): Remote[Map[K, V]]
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def nil[A]: Remote[List[A]]
  29. def none[A]: Remote[Option[A]]
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. def recurse[A, B](initial: Remote[A])(body: (Remote[A], (Remote[A]) ⇒ RecurseWith[A, B]) ⇒ Remote[B]): Remote[B]
  33. def recurseSimple[A](initial: Remote[A])(body: (Remote[A], (Remote[A]) ⇒ RecurseWith[A, A]) ⇒ Remote[A]): Remote[A]
  34. def right[A, B](value: Remote[B]): Remote[Either[A, B]]
  35. def schema[A]: Schema[Remote[A]]
  36. implicit val schemaAny: Schema[Remote[Any]]
  37. def set[A](values: Remote[A]*): Remote[Set[A]]
  38. def some[A](value: Remote[A]): Remote[Option[A]]
  39. def suspend[A](remote: Remote[A]): Remote[A]
  40. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  41. implicit def toFlow[A](remote: Remote[A]): ZFlow[Any, Nothing, A]
  42. def toString(): String
    Definition Classes
    AnyRef → Any
  43. implicit def tuple10[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)]
  44. implicit def tuple11[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)]
  45. implicit def tuple12[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12)]
  46. implicit def tuple13[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13)]
  47. implicit def tuple14[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14)]
  48. implicit def tuple15[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15)]
  49. implicit def tuple16[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15], Remote[T16])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16)]
  50. implicit def tuple17[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15], Remote[T16], Remote[T17])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17)]
  51. implicit def tuple18[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15], Remote[T16], Remote[T17], Remote[T18])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18)]
  52. implicit def tuple19[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15], Remote[T16], Remote[T17], Remote[T18], Remote[T19])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19)]
  53. implicit def tuple2[T1, T2](t: (Remote[T1], Remote[T2])): Remote[(T1, T2)]
  54. implicit def tuple20[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15], Remote[T16], Remote[T17], Remote[T18], Remote[T19], Remote[T20])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20)]
  55. implicit def tuple21[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15], Remote[T16], Remote[T17], Remote[T18], Remote[T19], Remote[T20], Remote[T21])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21)]
  56. implicit def tuple22[T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9], Remote[T10], Remote[T11], Remote[T12], Remote[T13], Remote[T14], Remote[T15], Remote[T16], Remote[T17], Remote[T18], Remote[T19], Remote[T20], Remote[T21], Remote[T22])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17, T18, T19, T20, T21, T22)]
  57. implicit def tuple3[T1, T2, T3](t: (Remote[T1], Remote[T2], Remote[T3])): Remote[(T1, T2, T3)]
  58. implicit def tuple4[T1, T2, T3, T4](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4])): Remote[(T1, T2, T3, T4)]
  59. implicit def tuple5[T1, T2, T3, T4, T5](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5])): Remote[(T1, T2, T3, T4, T5)]
  60. implicit def tuple6[T1, T2, T3, T4, T5, T6](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6])): Remote[(T1, T2, T3, T4, T5, T6)]
  61. implicit def tuple7[T1, T2, T3, T4, T5, T6, T7](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7])): Remote[(T1, T2, T3, T4, T5, T6, T7)]
  62. implicit def tuple8[T1, T2, T3, T4, T5, T6, T7, T8](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8)]
  63. implicit def tuple9[T1, T2, T3, T4, T5, T6, T7, T8, T9](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4], Remote[T5], Remote[T6], Remote[T7], Remote[T8], Remote[T9])): Remote[(T1, T2, T3, T4, T5, T6, T7, T8, T9)]
  64. val unit: Remote[Unit]
  65. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  68. object Binary extends Serializable
  69. object Bind extends Serializable
  70. object Branch extends Serializable
  71. object CharListToString extends Serializable
  72. object Config extends Serializable
  73. object Cons extends Serializable
  74. object Debug extends Serializable
  75. object DurationFromAmount extends Serializable
  76. object Equal extends Serializable
  77. object Fail extends Serializable
  78. object Flow extends Serializable
  79. object Fold extends Serializable
  80. object FoldEither extends Serializable
  81. object FoldOption extends Serializable
  82. object Ignore extends Serializable
  83. object Lazy extends Serializable
  84. object ListToMap extends Serializable
  85. object ListToSet extends Serializable
  86. object ListToString extends Serializable
  87. object Literal extends Serializable
  88. object MapToList extends Serializable
  89. object Nested extends Serializable
  90. object OpticGet extends Serializable
  91. object OpticSet extends Serializable
  92. object Recurse extends Serializable
  93. object RecurseWith extends Serializable
  94. object RemoteEither extends Serializable
  95. object RemoteSome extends Serializable
  96. object SetToList extends Serializable
  97. object SortList extends Serializable
  98. object StringToCharList extends Serializable
  99. object Try extends Serializable
  100. object Tuple10 extends ConstructStatic[Tuple10] with Serializable
  101. object Tuple11 extends ConstructStatic[Tuple11] with Serializable
  102. object Tuple12 extends ConstructStatic[Tuple12] with Serializable
  103. object Tuple13 extends ConstructStatic[Tuple13] with Serializable
  104. object Tuple14 extends ConstructStatic[Tuple14] with Serializable
  105. object Tuple15 extends ConstructStatic[Tuple15] with Serializable
  106. object Tuple16 extends ConstructStatic[Tuple16] with Serializable
  107. object Tuple17 extends ConstructStatic[Tuple17] with Serializable
  108. object Tuple18 extends ConstructStatic[Tuple18] with Serializable
  109. object Tuple19 extends ConstructStatic[Tuple19] with Serializable
  110. object Tuple2 extends ConstructStatic[Tuple2] with Serializable
  111. object Tuple20 extends ConstructStatic[Tuple20] with Serializable
  112. object Tuple21 extends ConstructStatic[Tuple21] with Serializable
  113. object Tuple22 extends ConstructStatic[Tuple22] with Serializable
  114. object Tuple3 extends ConstructStatic[Tuple3] with Serializable
  115. object Tuple4 extends ConstructStatic[Tuple4] with Serializable
  116. object Tuple5 extends ConstructStatic[Tuple5] with Serializable
  117. object Tuple6 extends ConstructStatic[Tuple6] with Serializable
  118. object Tuple7 extends ConstructStatic[Tuple7] with Serializable
  119. object Tuple8 extends ConstructStatic[Tuple8] with Serializable
  120. object Tuple9 extends ConstructStatic[Tuple9] with Serializable
  121. object TupleAccess extends Serializable
  122. object UnCons extends Serializable
  123. object Unary extends Serializable
  124. object Unbound extends Serializable
  125. object UnboundRemoteFunction extends Serializable
  126. object Variable extends Serializable
  127. object VariableReference extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped