package incremental
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
case class
Addition[T](v: T) extends Delta[T] with Product with Serializable
- T
type of the value the Delta holds
- v
the value that is added
-
sealed
trait
Delta[+T] extends AnyRef
Deltas represent a change that will happen on reactive sequences.
Deltas represent a change that will happen on reactive sequences. This could be adding, removing or no change at all
- T
type of the value the Delta holds
- trait IncrementalBundle extends AnyRef
-
case class
NoChange[T]() extends Delta[T] with Product with Serializable
- T
type of the value the Delta holds
-
case class
Removal[T](v: T) extends Delta[T] with Product with Serializable
- T
type of the value the Delta holds
- v
the value that is removed
Value Members
-
object
Delta
Object representing the Delta trait
- object IncrementalApi extends IncrementalBundle with RescalaInterface with Synchron
- object ReCollectionsExceptions