c

zio.flow.remote

RemoteMapSyntax

final class RemoteMapSyntax[K, V] extends AnyRef

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

Instance Constructors

  1. new RemoteMapSyntax(self: Remote[Map[K, V]], trackingEnabled: Boolean)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +[V1 >: V](pair: Remote[(K, V)]): Remote[Map[K, V1]]
  4. def ++[V2 >: V](xs: Remote[Map[K, V2]]): Remote[Map[K, V2]]
  5. def -(key: Remote[K]): Remote[Map[K, V]]
  6. def --(keys: Remote[List[K]]): Remote[Map[K, V]]
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def apply(key: Remote[K]): Remote[V]
  9. def applyOrElse[K1 <: K, V1 >: V](x: Remote[K1], default: (Remote[K1]) ⇒ Remote[V1]): Remote[V1]
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  12. def concat[V2 >: V](xs: Remote[Map[K, V2]]): Remote[Map[K, V2]]
  13. def contains(key: Remote[K]): Remote[Boolean]
  14. def corresponds[B](that: Remote[List[B]])(p: (Remote[(K, V)], Remote[B]) ⇒ Remote[Boolean]): Remote[Boolean]
  15. def count(p: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[Int]
  16. def drop(n: Remote[Int]): Remote[Map[K, V]]
  17. def dropRight(n: Remote[Int]): Remote[Map[K, V]]
  18. def dropWhile(p: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[Map[K, V]]
  19. def empty: Remote[Map[K, V]]
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  22. def exists(p: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[Boolean]
  23. def filter(pred: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[Map[K, V]]
  24. def filterNot(pred: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[Map[K, V]]
  25. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def find(p: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[Option[(K, V)]]
  27. def flatMap[K2, V2](f: (Remote[(K, V)]) ⇒ Remote[Map[K2, V2]]): Remote[Map[K2, V2]]
  28. def fold[A1 >: (K, V)](z: Remote[A1])(op: (Remote[A1], Remote[A1]) ⇒ Remote[A1]): Remote[A1]
  29. def foldLeft[B](z: Remote[B])(op: (Remote[B], Remote[(K, V)]) ⇒ Remote[B]): Remote[B]
  30. def foldRight[B](z: Remote[B])(op: (Remote[(K, V)], Remote[B]) ⇒ Remote[B]): Remote[B]
  31. def forall(p: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[Boolean]
  32. def get(key: Remote[K]): Remote[Option[V]]
  33. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  34. def getOrElse[V1 >: V](key: Remote[K], default: Remote[V1]): Remote[V1]
  35. def groupBy[K2](f: (Remote[(K, V)]) ⇒ Remote[K2]): Remote[Map[K2, Map[K, V]]]
  36. def groupMap[K2, B](key: (Remote[(K, V)]) ⇒ Remote[K2])(f: (Remote[(K, V)]) ⇒ Remote[B]): Remote[Map[K2, List[B]]]
  37. def groupMapReduce[K2, B](key: (Remote[(K, V)]) ⇒ Remote[K2])(f: (Remote[(K, V)]) ⇒ Remote[B])(reduce: (Remote[B], Remote[B]) ⇒ Remote[B]): Remote[Map[K2, B]]
  38. def grouped(size: Remote[Int]): Remote[List[Map[K, V]]]
  39. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  40. def head: Remote[(K, V)]
  41. def headOption: Remote[Option[(K, V)]]
  42. def init: Remote[Map[K, V]]
  43. def inits: Remote[List[Map[K, V]]]
  44. def isDefinedAt(key: Remote[K]): Remote[Boolean]
  45. def isEmpty: Remote[Boolean]
  46. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  47. def keySet: Remote[Set[K]]
  48. def keys: Remote[List[K]]
  49. def last: Remote[(K, V)]
  50. def lastOption: Remote[Option[(K, V)]]
  51. def lift: (Remote[K]) ⇒ Remote[Option[V]]
  52. def map[K2, V2](f: (Remote[(K, V)]) ⇒ Remote[(K2, V2)]): Remote[Map[K2, V2]]
  53. def mkString(start: Remote[String], sep: Remote[String], end: Remote[String])(implicit schemaK: Schema[K], schemaV: Schema[V]): Remote[String]
  54. def mkString(sep: Remote[String])(implicit schemaK: Schema[K], schemaV: Schema[V]): Remote[String]
  55. def mkString(implicit schemaK: Schema[K], schemaV: Schema[V]): Remote[String]
  56. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  57. def nonEmpty: Remote[Boolean]
  58. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  59. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  60. def partition(p: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[(Map[K, V], Map[K, V])]
  61. def partitionMap[A1, A2](p: (Remote[(K, V)]) ⇒ Remote[Either[A1, A2]]): Remote[(List[A1], List[A2])]
  62. def reduce[B >: (K, V)](op: (Remote[B], Remote[B]) ⇒ Remote[B]): Remote[B]
  63. def reduceLeft[B >: (K, V)](op: (Remote[B], Remote[(K, V)]) ⇒ Remote[B]): Remote[B]
  64. def reduceLeftOption[B >: (K, V)](op: (Remote[B], Remote[(K, V)]) ⇒ Remote[B]): Remote[Option[B]]
  65. def reduceOption[B >: (K, V)](op: (Remote[B], Remote[B]) ⇒ Remote[B]): Remote[Option[B]]
  66. def reduceRight[B >: (K, V)](op: (Remote[(K, V)], Remote[B]) ⇒ Remote[B]): Remote[B]
  67. def reduceRightOption[B >: (K, V)](op: (Remote[(K, V)], Remote[B]) ⇒ Remote[B]): Remote[Option[B]]
  68. def removed(key: Remote[K]): Remote[Map[K, V]]
  69. def removedAll(keys: Remote[List[K]]): Remote[Map[K, V]]
  70. def scan[B >: (K, V)](z: Remote[B])(op: (Remote[B], Remote[B]) ⇒ Remote[B]): Remote[List[B]]
  71. def scanLeft[B >: (K, V)](z: Remote[B])(op: (Remote[B], Remote[(K, V)]) ⇒ Remote[B]): Remote[List[B]]
  72. def scanRight[B >: (K, V)](z: Remote[B])(op: (Remote[(K, V)], Remote[B]) ⇒ Remote[B]): Remote[List[B]]
  73. val self: Remote[Map[K, V]]
  74. def size: Remote[Int]
  75. def slice(from: Remote[Int], until: Remote[Int]): Remote[Map[K, V]]
  76. def sliding(size: Remote[Int]): Remote[List[Map[K, V]]]
  77. def sliding(size: Remote[Int], step: Remote[Int]): Remote[List[Map[K, V]]]
  78. def span(p: (Remote[(K, V)]) ⇒ Remote[Boolean]): Remote[(Map[K, V], Map[K, V])]
  79. def splitAt(n: Remote[Int]): Remote[(Map[K, V], Map[K, V])]
  80. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  81. def tail: Remote[Map[K, V]]
  82. def tails: Remote[List[Map[K, V]]]
  83. def take(n: Remote[Int]): Remote[Map[K, V]]
  84. def takeRight(n: Remote[Int]): Remote[Map[K, V]]
  85. def toList: Remote[List[(K, V)]]
  86. def toSet: Remote[Set[(K, V)]]
  87. def toString(): String
    Definition Classes
    AnyRef → Any
  88. def unzip: Remote[(List[K], List[V])]
  89. def updated[V1 >: V](key: Remote[K], value: Remote[V1]): Remote[Map[K, V1]]
  90. def values: Remote[List[V]]
  91. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  92. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  93. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  94. def zip[B](that: Remote[List[B]]): Remote[List[((K, V), B)]]
  95. def zipAll[B](that: Remote[List[B]], thisElem: Remote[(K, V)], thatElem: Remote[B]): Remote[List[((K, V), B)]]

Inherited from AnyRef

Inherited from Any

Ungrouped