Trait

com.thoughtworks.binding.Binding

BindingSeq

Related Doc: package Binding

Permalink

sealed trait BindingSeq[+A] extends Binding[Seq[A]]

Data binding expression of a sequence

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BindingSeq
  2. Binding
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class WithFilter extends AnyRef

    Permalink

    A helper to build complicated comprehension expressions for BindingSeq

Abstract Value Members

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

    Permalink
    Definition Classes
    Any

Concrete Value Members

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

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

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  6. macro def flatMap[B](f: (A) ⇒ BindingSeq[B]): BindingSeq[B]

    Permalink

    Returns a BindingSeq that flat-maps each element of this BindingSeq via f

    Returns a BindingSeq that flat-maps each element of this BindingSeq via f

    Note

    This method is only available in a monadic[Binding] block or a @dom method.

  7. final def flatMapBinding[B](f: (A) ⇒ Binding[BindingSeq[B]]): BindingSeq[B]

    Permalink

    Underlying implementation of #flatMap.

    Underlying implementation of #flatMap.

    Annotations
    @inline()
    Note

    Don't use this method in user code.

  8. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  10. final def length: Binding[Int]

    Permalink
  11. macro def map[B](f: (A) ⇒ B): BindingSeq[B]

    Permalink

    Returns a BindingSeq that maps each element of this BindingSeq via f

    Returns a BindingSeq that maps each element of this BindingSeq via f

    Note

    This method is only available in a monadic[Binding] block or a @dom method.

  12. final def mapBinding[B](f: (A) ⇒ Binding[B]): BindingSeq[B]

    Permalink

    Underlying implementation of #map.

    Underlying implementation of #map.

    Annotations
    @inline()
    Note

    Don't use this method in user code.

  13. def toString(): String

    Permalink
    Definition Classes
    Any
  14. final def unwatch(): Unit

    Permalink

    Disable automatically re-calculation.

    Disable automatically re-calculation.

    Definition Classes
    Binding
    Annotations
    @inline()
    Note

    This method is recursive, which means that the dependencies of this Binding will be unwatched as well.

  15. final def watch(): Unit

    Permalink

    Enable automatically re-calculation.

    Enable automatically re-calculation.

    You may invoke this method more than once. Then, when you want to disable automatically re-calculation, you must invoke #unwatch same times as the number of calls to this method.

    Definition Classes
    Binding
    Annotations
    @inline()
    Note

    This method is recursive, which means that the dependencies of this Binding will be watched as well.

  16. macro def withFilter(condition: (A) ⇒ Boolean): WithFilter

    Permalink

    Returns a view of this BindingSeq that applied a filter of condition

  17. final def withFilterBinding(condition: (A) ⇒ Binding[Boolean]): WithFilter

    Permalink

    Underlying implementation of #withFilter.

    Underlying implementation of #withFilter.

    Annotations
    @inline()
    Note

    Don't use this method in user code.

Inherited from Binding[Seq[A]]

Inherited from Any

Ungrouped