Collection

object Collection
Source
__.scala
class java.lang.Object
trait scala.Matchable
class Any

Member

trait Mutable[A] extends Collection[A] with Able.Add[A]
trait Mutable[A] extends Collection[A] with Able.Add[A]
trait Observable[A] extends Collection[A] with Gen.O

Observable Collection

Observable collection allows to track add, remove changes by subscribing to the events

Source
Observable.scala
trait Observable[A] extends Collection[A] with Gen.O

Observable Collection

Observable collection allows to track add, remove changes by subscribing to the events

Source
Observable.scala

Def

def apply[A](v: A): Collection[A]
Source
__.scala
def apply[A](v1: A, v2: A): Collection[A]
Source
__.scala
def apply[A](v1: A, v2: A, v3: A, vs: A*): Collection[A]
Source
__.scala
def unapplySeq[A](v: Collection[A]): scala.Option[scala.collection.immutable.Seq[A]]
Source
__.scala
@targetName("getVoid")
inline def void[A]: Collection[A]

Get void instance

Get void instance

Source
__.scala

Implicit

implicit inline def implicitRequest[A](v: VOID): Collection[A]

General void instance request

General void instance request

It is possible to use general request VOID to get void instance of this type, thanks to this implicit conversion.

Source
__.scala