Packages

c

com.thoughtworks.binding.Binding

SingletonBindingSeq

final case class SingletonBindingSeq[A](upstream: Binding[A]) extends BindingSeq[A] with ChangedListener[A] with Product with Serializable

A BindingSeq that contains only one element

Source
Binding.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SingletonBindingSeq
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ChangedListener
  7. BindingSeq
  8. AnyRef
  9. 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

Instance Constructors

  1. new SingletonBindingSeq(upstream: Binding[A])

Type Members

  1. final class WithFilter extends AnyRef

    A helper to build complicated comprehension expressions for BindingSeq

    A helper to build complicated comprehension expressions for BindingSeq

    Definition Classes
    BindingSeq

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to any2stringadd[SingletonBindingSeq[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (SingletonBindingSeq[A], B)
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to ArrowAssoc[SingletonBindingSeq[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def all: Binding[Seq[A]]

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

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

    Definition Classes
    BindingSeq
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. final macro def bind: Seq[A]

    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
    This member is added by an implicit conversion from SingletonBindingSeq[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
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring(cond: (SingletonBindingSeq[A]) ⇒ Boolean, msg: ⇒ Any): SingletonBindingSeq[A]
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to Ensuring[SingletonBindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (SingletonBindingSeq[A]) ⇒ Boolean): SingletonBindingSeq[A]
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to Ensuring[SingletonBindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): SingletonBindingSeq[A]
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to Ensuring[SingletonBindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): SingletonBindingSeq[A]
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to Ensuring[SingletonBindingSeq[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. macro def flatMap[B](f: (A) ⇒ BindingSeq[B]): BindingSeq[B]

    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

    Definition Classes
    BindingSeq
    Note

    This method is only available in a Binding { ??? } block or a @dom method.

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

    Underlying implementation of flatMap.

    Underlying implementation of flatMap.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    Don't use this method in user code.

  18. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to StringFormat[SingletonBindingSeq[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def length: Constant[Int]
    Definition Classes
    SingletonBindingSeqBindingSeq
  22. macro def map[B](f: (A) ⇒ B): BindingSeq[B]

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

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

    Definition Classes
    BindingSeq
    Note

    This method is only available in a Binding { ??? } block or a @dom method.

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

    Underlying implementation of map.

    Underlying implementation of map.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    Don't use this method in user code.

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. final def unwatch(): Unit

    Disables automatic recalculation.

    Disables automatic recalculation.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

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

  29. val upstream: Binding[A]
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def watch(): Unit

    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.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

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

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

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

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

    Definition Classes
    BindingSeq
  35. final def withFilterBinding(condition: (A) ⇒ Binding[Boolean]): WithFilter

    Underlying implementation of withFilter.

    Underlying implementation of withFilter.

    Definition Classes
    BindingSeq
    Annotations
    @inline()
    Note

    Don't use this method in user code.

  36. def [B](y: B): (SingletonBindingSeq[A], B)
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[A] to ArrowAssoc[SingletonBindingSeq[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. final def unwatch(): Unit

    Disable automatic recalculation.

    Disable automatic recalculation.

    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[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:
    (singletonBindingSeq: 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

    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
    This member is added by an implicit conversion from SingletonBindingSeq[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:
    (singletonBindingSeq: 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]
    Implicit
    This member is added by an implicit conversion from SingletonBindingSeq[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 Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ChangedListener[A]

Inherited from BindingSeq[A]

Inherited from AnyRef

Inherited from Any

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

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

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

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

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

Ungrouped