final case class FuncCell2[A, B, Z](a: Cell[A], b: Cell[B], f: (A, B) => Z) extends Cell[Z] with Product with Serializable
- Alphabetic
- By Inheritance
- FuncCell2
- Serializable
- Product
- Equals
- Cell
- Dependent
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- val a: Cell[A]
- def addDependent[T <: Dependent](dep: T): T
Add a Dependent to this cell.
Add a Dependent to this cell. The Dependent will be notified when the Cell's value changes. Dependents are kept around as WeakReferences so they do not have to be explicitly removed from the List
- Definition Classes
- Cell
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val b: Cell[B]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def currentValue: (Z, Long)
The cell's value and most recent change time
- def dependents: Seq[Dependent]
Get a List of the Dependents
Get a List of the Dependents
- Definition Classes
- Cell
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val f: (A, B) => Z
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def get: Z
Get the cell's value
Get the cell's value
- Definition Classes
- Cell
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lift[A, B](cell: Cell[B])(f: (Z, B) => A): Cell[A]
- Definition Classes
- Cell
- def lift[A](f: (Z) => A): Cell[A]
Create a new Cell by applying the function to this cell
Create a new Cell by applying the function to this cell
- Definition Classes
- Cell
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def notifyDependents(): Unit
Notify dependents of a state change.
Notify dependents of a state change. Note this will be performed on a separate thread asynchronously
- Definition Classes
- Cell
- def predicateChanged(which: Cell[_]): Unit
If the predicate cell changes, the Dependent will be notified
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def removeDependent[T <: Dependent](dep: T): T
Remove a Dependent to this cell.
Remove a Dependent to this cell.
- Definition Classes
- Cell
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def unregisterFromAllDependencies(): Unit
Remove from all dependencies
Remove from all dependencies
- Attributes
- protected
- Definition Classes
- Dependent
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def whoDoIDependOn: Seq[Cell[_]]
Get a list of all the cells this Dependency depends on
Get a list of all the cells this Dependency depends on
- Attributes
- protected
- Definition Classes
- Dependent
- def youDependOnMe(who: Cell[_]): Unit
The Cell notifies the Dependent of the dependency
The Cell notifies the Dependent of the dependency
- Definition Classes
- Dependent
- def youDontDependOnMe(who: Cell[_]): Unit
The Cell notifies the Dependent of the removed dependency
The Cell notifies the Dependent of the removed dependency
- Definition Classes
- Dependent