reactive

ForeachableForwardable

implicit final class ForeachableForwardable[V, S <: Foreachable[V]] extends AnyVal with Forwardable[V, S]

Source
package.scala
Linear Supertypes
Forwardable[V, S], AnyVal, NotNull, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ForeachableForwardable
  2. Forwardable
  3. AnyVal
  4. NotNull
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ForeachableForwardable(self: S with Foreachable[V])

Value Members

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

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

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

    Apply a function for every value.

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

    Definition Classes
    Forwardable
  4. def ->>(block: ⇒ Unit)(implicit observing: Observing): S

    Run a block of code for every value

    Run a block of code for every value

    Definition Classes
    Forwardable
  5. def <<:[U >: V, 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

    Definition Classes
    Forwardable
  6. final def ==(arg0: Any): Boolean

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

    Apply a function for every value

    Apply a function for every value

    Definition Classes
    Forwardable
  8. def >>[U >: V, 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).

    returns

    the forwarding instance

    Definition Classes
    Forwardable
  9. def ?>>(pf: PartialFunction[V, Unit])(implicit observing: Observing): S

    Apply a PartialFunction for every applicable value

    Apply a PartialFunction for every applicable value

    Definition Classes
    Forwardable
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def foreach(f: (V) ⇒ Unit)(implicit observing: Observing): S with Foreachable[V]

    Definition Classes
    ForeachableForwardableForwardable
  12. def getClass(): Class[_ <: AnyVal]

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

    Definition Classes
    Any
  14. val self: S with Foreachable[V]

    Definition Classes
    ForeachableForwardableForwardable
  15. def toString(): String

    Definition Classes
    Any

Inherited from Forwardable[V, S]

Inherited from AnyVal

Inherited from NotNull

Inherited from Any

Ungrouped