J.Util.Proxy.Collection.O

abstract class O[A] extends J.Util.Proxy.Collection[A] with J.Util.Proxy.Collection.O.Base[A]
trait J.Util.Proxy.Collection.O.Base[J.Util.Proxy.Collection.O.A]
trait Collection.Observable[J.Util.Proxy.Collection.O.A]
class J.Util.Proxy.Collection[J.Util.Proxy.Collection.O.A]
trait J.Util.Proxy.Collection.Base[J.Util.Proxy.Collection.O.A]
trait J.Util.Proxy[Collection.Observable[J.Util.Proxy.Collection.O.A]]
trait Collection[J.Util.Proxy.Collection.O.A]
trait Able.Size
trait Able.Stream[J.Util.Proxy.Collection.O.A]
class java.lang.Object
trait scala.Matchable
class Any

Def

override def onAdd[U](l: A => U): Event.Control

On element add

On element add

Subscribes given function to element add event

val co: Collection.ObservableMutable[Int] = Collection.OM[Int]()

co.onAdd("Added: "+ _ tp())

co ++= 1 <> 3

// Output
Added: 1
Added: 2
Added: 3
Definition Classes
Inherited from
Base
Source
Collection.scala
def onObservableChange[U](l: () => U): Event.Control
Inherited from
Observable
Source
Observable.scala
override def onRemove[U](l: A => U): Event.Control

On element remove

On element remove

Subscribes given function to element remove event

val co: Collection.ObservableMutable[Int] = Collection.OM[Int]()

co.onRemove("Removed: "+ _ tp())

co ++= 1 <> 10

co --= 5 <> 7

// Output
Removed: 7
Removed: 6
Removed: 5
Definition Classes
Inherited from
Base
Source
Collection.scala
override def size: Int
Definition Classes
Inherited from
Base
Source
Collection.scala
override def stream: Stream[A]

Stream elements

Stream elements

Returns a stream of all collection elements

Unless specifically defined, the order must be assumed as random

  val c = Collection(1,3,5,7)
  c.stream.tp

  // Output
  Stream(1, 3, 5, 7)
Definition Classes
Inherited from
Base
Source
Collection.scala