reactive

Forwardable

trait Forwardable[+T, +Self] extends Any

Something from which values can be forwarded

Source
Forwardable.scala
Linear Supertypes
Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Forwardable
  2. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def foreach(thunk: (T) ⇒ Unit)(implicit observing: Observing): Self

  2. abstract def getClass(): Class[_]

    Definition Classes
    Any
  3. abstract def self: Self

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  2. final def ##(): Int

    Definition Classes
    Any
  3. def +=(thunk: (T) ⇒ Unit)(implicit observing: Observing): Self

    Apply a function for every value.

    Apply a function for every value. Same as =>>.

  4. def ->>(block: ⇒ Unit)(implicit observing: Observing): Self

    Run a block of code for every value

  5. def <<:[U >: T, S](target: ⇒ S)(implicit canForwardTo: CanForwardTo[S, U], observing: Observing): S

    Forwards values from this Forwardable to a target, for whose type a CanForwardTo exists (in the implicit scope).

    Forwards values from this Forwardable to a target, for whose type a CanForwardTo exists (in the implicit scope). This operator is available for right associativity. For example: val time = Var(0) <<: timerTicks // equivalent to: val time = Var(0); timerTicks >> time

    returns

    the target

  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. def =>>(thunk: (T) ⇒ Unit)(implicit observing: Observing): Self

    Apply a function for every value

  8. def >>[U >: T, S](target: ⇒ S)(implicit canForwardTo: CanForwardTo[S, U], observing: Observing): Self

    Forwards values from this Forwardable to a target, for whose type a CanForwardTo exists (in the implicit scope).

    Forwards values from this Forwardable to a target, for whose type a CanForwardTo exists (in the implicit scope).

    returns

    the forwarding instance

  9. def ?>>(pf: PartialFunction[T, Unit])(implicit observing: Observing): Self

    Apply a PartialFunction for every applicable value

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def equals(arg0: Any): Boolean

    Definition Classes
    Any
  12. def hashCode(): Int

    Definition Classes
    Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. def toString(): String

    Definition Classes
    Any

Inherited from Any

Ungrouped