Trait/Object

com.thoughtworks.binding.Binding

BindingSeq

Related Docs: object BindingSeq | package Binding

Permalink

trait BindingSeq[+A] extends AnyRef

Data binding expression of a sequence

Source
Binding.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BindingSeq
  2. AnyRef
  3. Any
Implicitly
  1. by AsBinding
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  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 addPatchedListener(listener: PatchedListener[A]): Unit

    Permalink
    Attributes
    protected
  2. abstract def removePatchedListener(listener: PatchedListener[A]): Unit

    Permalink
    Attributes
    protected
  3. abstract def value: Seq[A]

    Permalink
    Attributes
    protected

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to any2stringadd[BindingSeq[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BindingSeq[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to ArrowAssoc[BindingSeq[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def all: Binding[Seq[A]]

    Permalink

    Returns a new Binding expression of all elements in this BindingSeq.

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. final macro def bind: Seq[A]

    Permalink

    Returns the current value of this Binding and marks the current @dom method depend on this Binding.

    Returns the current value of this Binding and marks the current @dom method depend on this Binding.

    Each time the value changes, in the current @dom method, all code after the current bind expression will be re-evaluated if the current @dom method is watching. However, code in current @dom method and before the current bind expression will not be re-evaluated. The above rule is not applied to DOM nodes created by XHTML literal. A bind expression under a DOM node does not affect siblings and parents of that node.

    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Definition Classes
    Binding
    Note

    This method must be invoked inside a @dom method body or a Binding { ... } block..

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring(cond: (BindingSeq[A]) ⇒ Boolean, msg: ⇒ Any): BindingSeq[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to Ensuring[BindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (BindingSeq[A]) ⇒ Boolean): BindingSeq[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to Ensuring[BindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): BindingSeq[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to Ensuring[BindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): BindingSeq[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to Ensuring[BindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. 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 Binding { ??? } block or a @dom method.

  18. 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.

  19. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to StringFormat[BindingSeq[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

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

    Permalink
  24. 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 Binding { ??? } block or a @dom method.

  25. 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.

  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def unwatch(): Unit

    Permalink

    Disables automatic recalculation.

    Disables automatic recalculation.

    Annotations
    @inline()
    Note

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

  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def watch(): Unit

    Permalink

    Enables automatic recalculation.

    Enables automatic recalculation.

    You may invoke this method more than once. Then, when you want to disable automatic recalculation, you must invoke unwatch same times as the number of calls to this method.

    Annotations
    @inline()
    Note

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

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

    Permalink

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

  37. 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.

  38. def [B](y: B): (BindingSeq[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to ArrowAssoc[BindingSeq[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. final def unwatch(): Unit

    Permalink

    Disable automatic recalculation.

    Disable automatic recalculation.

    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (bindingSeq: AsBinding[A]).unwatch()
    Definition Classes
    Binding
    Annotations
    @inline()
    Note

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

  2. final def watch(): Unit

    Permalink

    Enable automatic recalculation.

    Enable automatic recalculation.

    You may invoke this method more than once. Then, when you want to disable automatic recalculation, you must invoke unwatch same times as the number of calls to this method.

    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (bindingSeq: AsBinding[A]).watch()
    Definition Classes
    Binding
    Annotations
    @inline()
    Note

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

Deprecated Value Members

  1. final macro def each: Seq[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from BindingSeq[A] to AsBinding[A] performed by method AsBinding in com.thoughtworks.binding.Binding.BindingSeq.
    Definition Classes
    Binding
    Annotations
    @deprecated
    Deprecated

    (Since version 7.0.0) Use bind instead

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion AsBinding from BindingSeq[A] to AsBinding[A]

Inherited by implicit conversion any2stringadd from BindingSeq[A] to any2stringadd[BindingSeq[A]]

Inherited by implicit conversion StringFormat from BindingSeq[A] to StringFormat[BindingSeq[A]]

Inherited by implicit conversion Ensuring from BindingSeq[A] to Ensuring[BindingSeq[A]]

Inherited by implicit conversion ArrowAssoc from BindingSeq[A] to ArrowAssoc[BindingSeq[A]]

Ungrouped