object Remote
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Remote
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- type ===>[A, B] = UnboundRemoteFunction[A, B]
- 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
- final case class Bind[A, B](unbound: Unbound[A], value: Remote[A], inner: Remote[B]) extends Remote[B] with Product with Serializable
- final case class Branch[A](predicate: Remote[Boolean], ifTrue: Remote[A], ifFalse: Remote[A]) extends Remote[A] with Product with Serializable
- case class CharListToString(remoteString: Remote[List[Char]]) extends Remote[String] with Product with Serializable
- final case class Config[A](key: ConfigKey, schema: Schema[A]) extends Remote[A] with Product with Serializable
- final case class Cons[A](list: Remote[List[A]], head: Remote[A]) extends Remote[List[A]] with Product with Serializable
- final case class Debug[A](inner: Remote[A], message: String, debugMode: DebugMode) extends Remote[A] with Product with Serializable
- final case class DurationFromAmount(amount: Remote[Long], temporalUnit: Remote[ChronoUnit]) extends Remote[zio.Duration] with Product with Serializable
- final case class Equal[A](left: Remote[A], right: Remote[A]) extends Remote[Boolean] with Product with Serializable
- final case class EvaluatedRemoteFunction[-A, +B](result: DynamicValue) extends AnyVal with Product with Serializable
- final case class Fail[A](message: String) extends Remote[A] with Product with Serializable
- final case class Flow[R, E, A](flow: ZFlow[R, E, A]) extends Remote[ZFlow[R, E, A]] with Product with Serializable
- 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
- 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
- final case class FoldOption[A, B](option: Remote[Option[A]], ifEmpty: Remote[B], ifNonEmpty: UnboundRemoteFunction[A, B]) extends Remote[B] with Product with Serializable
- final case class Ignore() extends Remote[Unit] with Product with Serializable
- final case class Lazy[A](value: () ⇒ Remote[A]) extends Remote[A] with Product with Serializable
- final case class ListToMap[K, V](list: Remote[List[(K, V)]]) extends Remote[Map[K, V]] with Product with Serializable
- final case class ListToSet[A](list: Remote[List[A]]) extends Remote[Set[A]] with Product with Serializable
- final case class ListToString(list: Remote[List[String]], start: Remote[String], sep: Remote[String], end: Remote[String]) extends Remote[String] with Product with Serializable
- final case class Literal[A](value: DynamicValue) extends Remote[A] with Product with Serializable
- final case class MapToList[K, V](set: Remote[Map[K, V]]) extends Remote[List[(K, V)]] with Product with Serializable
- final case class Nested[A](remote: Remote[A]) extends Remote[Remote[A]] with Product with Serializable
- final case class OpticGet[S, A, R](optic: RemoteOptic[S, A], value: Remote[S]) extends Remote[R] with Product with Serializable
- 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
- final case class Recurse[A, B](id: RecursionId, initial: Remote[A], body: UnboundRemoteFunction[A, B]) extends Remote[B] with Product with Serializable
- final case class RecurseWith[A, B](id: RecursionId, value: Remote[A]) extends Remote[B] with Product with Serializable
- final case class RemoteEither[A, B](either: Either[Remote[A], Remote[B]]) extends Remote[Either[A, B]] with Product with Serializable
- final case class RemoteSome[A](value: Remote[A]) extends Remote[Option[A]] with Product with Serializable
- final case class SetToList[A](set: Remote[Set[A]]) extends Remote[List[A]] with Product with Serializable
- final case class SortList[A](list: Remote[List[A]], lt: UnboundRemoteFunction[(A, A), Boolean]) extends Remote[List[A]] with Product with Serializable
- case class StringToCharList(remoteString: Remote[String]) extends Remote[List[Char]] with Product with Serializable
- case class Substitutions(bindings: Map[Unbound[_], Remote[_]]) extends Product with Serializable
- final case class Try[A](either: Either[Remote[Throwable], Remote[A]]) extends Remote[scala.util.Try[A]] with Product with Serializable
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- final case class Tuple2[T1, T2](t1: Remote[T1], t2: Remote[T2]) extends Remote[(T1, T2)] with Construct[T1, T2] with Product with Serializable
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- final case class TupleAccess[T, A](tuple: Remote[T], n: Int, arity: Int) extends Remote[A] with Product with Serializable
- final case class UnCons[A](list: Remote[List[A]]) extends Remote[Option[(A, List[A])]] with Product with Serializable
- final case class Unary[In, Out](value: Remote[In], operator: UnaryOperators[In, Out]) extends Remote[Out] with Product with Serializable
- final case class Unbound[A](identifier: BindingName) extends Remote[A] with Product with Serializable
- final case class UnboundRemoteFunction[A, B] extends Remote[EvaluatedRemoteFunction[A, B]] with Product with Serializable
- final case class Variable[A](identifier: RemoteVariableName) extends Remote[A] with Product with Serializable
- final case class VariableReference[A](ref: RemoteVariableReference[A]) extends Remote[RemoteVariableReference[A]] with Product with Serializable
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit def apply[A](value: A)(implicit arg0: Schema[A]): Remote[A]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bind[A, B](value: Remote[A])(f: (Unbound[A]) ⇒ Remote[B]): Remote[B]
- implicit def capturedRemoteToRemote[A, B](f: (Remote[A]) ⇒ Remote[B]): UnboundRemoteFunction[A, B]
- def chunk[A](values: Remote[A]*): Remote[Chunk[A]]
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def config[A](key: ConfigKey)(implicit arg0: Schema[A]): Remote[A]
- def either[A, B](either: Either[Remote[A], Remote[B]]): Remote[Either[A, B]]
- def emptyChunk[A]: Remote[Chunk[A]]
- def emptyMap[K, V]: Remote[Map[K, V]]
- def emptySet[A]: Remote[Set[A]]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def fail[A](message: String): Remote[A]
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def fromDynamic[A](dynamicValue: DynamicValue): Remote[A]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def left[A, B](value: Remote[A]): Remote[Either[A, B]]
- def list[A](values: Remote[A]*): Remote[List[A]]
-
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.
- def map[K, V](values: Remote[(K, V)]*): Remote[Map[K, V]]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nil[A]: Remote[List[A]]
- def none[A]: Remote[Option[A]]
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def recurse[A, B](initial: Remote[A])(body: (Remote[A], (Remote[A]) ⇒ RecurseWith[A, B]) ⇒ Remote[B]): Remote[B]
- def recurseSimple[A](initial: Remote[A])(body: (Remote[A], (Remote[A]) ⇒ RecurseWith[A, A]) ⇒ Remote[A]): Remote[A]
- def right[A, B](value: Remote[B]): Remote[Either[A, B]]
- def schema[A]: Schema[Remote[A]]
- implicit val schemaAny: Schema[Remote[Any]]
- def set[A](values: Remote[A]*): Remote[Set[A]]
- def some[A](value: Remote[A]): Remote[Option[A]]
- def suspend[A](remote: Remote[A]): Remote[A]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- implicit def toFlow[A](remote: Remote[A]): ZFlow[Any, Nothing, A]
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- 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)]
- 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)]
- 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)]
- 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)]
- 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)]
- 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)]
- 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)]
- 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)]
- 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)]
- 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)]
- implicit def tuple2[T1, T2](t: (Remote[T1], Remote[T2])): Remote[(T1, T2)]
- 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)]
- 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)]
- 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)]
- implicit def tuple3[T1, T2, T3](t: (Remote[T1], Remote[T2], Remote[T3])): Remote[(T1, T2, T3)]
- implicit def tuple4[T1, T2, T3, T4](t: (Remote[T1], Remote[T2], Remote[T3], Remote[T4])): Remote[(T1, T2, T3, T4)]
- 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)]
- 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)]
- 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)]
- 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)]
- 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)]
- val unit: Remote[Unit]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- object Binary extends Serializable
- object Bind extends Serializable
- object Branch extends Serializable
- object CharListToString extends Serializable
- object Config extends Serializable
- object Cons extends Serializable
- object Debug extends Serializable
- object DurationFromAmount extends Serializable
- object Equal extends Serializable
- object Fail extends Serializable
- object Flow extends Serializable
- object Fold extends Serializable
- object FoldEither extends Serializable
- object FoldOption extends Serializable
- object Ignore extends Serializable
- object Lazy extends Serializable
- object ListToMap extends Serializable
- object ListToSet extends Serializable
- object ListToString extends Serializable
- object Literal extends Serializable
- object MapToList extends Serializable
- object Nested extends Serializable
- object OpticGet extends Serializable
- object OpticSet extends Serializable
- object Recurse extends Serializable
- object RecurseWith extends Serializable
- object RemoteEither extends Serializable
- object RemoteSome extends Serializable
- object SetToList extends Serializable
- object SortList extends Serializable
- object StringToCharList extends Serializable
- object Try extends Serializable
- object Tuple10 extends ConstructStatic[Tuple10] with Serializable
- object Tuple11 extends ConstructStatic[Tuple11] with Serializable
- object Tuple12 extends ConstructStatic[Tuple12] with Serializable
- object Tuple13 extends ConstructStatic[Tuple13] with Serializable
- object Tuple14 extends ConstructStatic[Tuple14] with Serializable
- object Tuple15 extends ConstructStatic[Tuple15] with Serializable
- object Tuple16 extends ConstructStatic[Tuple16] with Serializable
- object Tuple17 extends ConstructStatic[Tuple17] with Serializable
- object Tuple18 extends ConstructStatic[Tuple18] with Serializable
- object Tuple19 extends ConstructStatic[Tuple19] with Serializable
- object Tuple2 extends ConstructStatic[Tuple2] with Serializable
- object Tuple20 extends ConstructStatic[Tuple20] with Serializable
- object Tuple21 extends ConstructStatic[Tuple21] with Serializable
- object Tuple22 extends ConstructStatic[Tuple22] with Serializable
- object Tuple3 extends ConstructStatic[Tuple3] with Serializable
- object Tuple4 extends ConstructStatic[Tuple4] with Serializable
- object Tuple5 extends ConstructStatic[Tuple5] with Serializable
- object Tuple6 extends ConstructStatic[Tuple6] with Serializable
- object Tuple7 extends ConstructStatic[Tuple7] with Serializable
- object Tuple8 extends ConstructStatic[Tuple8] with Serializable
- object Tuple9 extends ConstructStatic[Tuple9] with Serializable
- object TupleAccess extends Serializable
- object UnCons extends Serializable
- object Unary extends Serializable
- object Unbound extends Serializable
- object UnboundRemoteFunction extends Serializable
- object Variable extends Serializable
- object VariableReference extends Serializable