Int.G.Collection.Mutable

trait Mutable[A <: RAW] extends Int.G.Collection[A] with Collection.Mutable[A]
trait Able.Add[A]
trait Able.Contain[A]
trait Collection[A]
trait Able.Size
trait Able.~[A]
class Object
trait Matchable
class Any

Def

def add(v: A): Unit

Inherited

@targetName("stream")
def ~: Int.G.~[A]
Inherited from
Collection
Source
Collection.scala
@targetName("addAll")
inline def ++=(inline v: ~[A]): Int.G.Collection.Mutable[A]

Alias for addAll

Alias for addAll

Calls addAll and returns container

 // Generic example
 val x =  Idx.M(1, 2, 3)

 x ++= (4 <> 6) ++= Stream(7, 8, 9)

 x.~.tp // ~~(1, 2, 3, 4, 5, 6, 7, 8, 9)
Inherited from
Add
Source
Add.scala
@targetName("add")
inline def +=(inline v: A | Opt[A]): Int.G.Collection.Mutable[A]

Alias for add

Alias for add

Calls add and returns container

 // Generic example
 val x =  Idx.M(1, 2, 3)

  x += 4 += 5 += 6

  x.~.tp // Prints ~(1, 2, 3, 4, 5, 6)
Inherited from
Add
Source
Add.scala
@targetName("_removeAll")
inline def --=(inline v: ~[A]): Int.G.Collection.Mutable[A]

Alias for removeAll

Alias for removeAll

Removes all collection elements, which are equal to those in given stream

Returns count of removed elements, which can be 0, 1, or many

Inherited from
Mutable
Source
Mutable.scala
@targetName("_remove")
inline def -=(inline v: A): Int.G.Collection.Mutable[A]

Alias for remove

Alias for remove

Removes all collection elements, which are equal to the given value

Returns count of removed elements, which can be 0, 1, or many

Inherited from
Mutable
Source
Mutable.scala
@targetName("add_Opt")
def add_?(o: Opt[A]): Unit

Optional add

Optional add

Adds element if option has value, does nothing for void option

Inherited from
Add
Source
Add.scala
def addAll(v: ~[A]): Unit

Add many

Add many

Adds given stream of elements to target container

 // Generic example
 val x =  Idx.M(1, 2, 3)

  x.addAll(4 <> 6)
  x.addAll( ~~(7,8,9))

  x.~.tp // Stream(1, 2, 3, 4, 5, 6, 7, 8, 9)
Inherited from
Add
Source
Add.scala
def clear: Unit

Remove everything

Remove everything

Discards all elements, so the colection size will become 0

Inherited from
Mutable
Source
Mutable.scala
def contains(v: A): Boolean
Inherited from
Collection
Source
Collection.scala
def isEmpty: Boolean
Inherited from
Size
Source
Size.scala
def remove(v: A): Int

Remove element

Remove element

Removes all collection elements, which are equal to the given value

Returns count of removed elements, which can be 0, 1, or many

Inherited from
Mutable
Source
Mutable.scala
def removeAll(v: ~[A]): Int

Remove all streamed

Remove all streamed

Removes all collection elements, which are equal to those in given stream

Returns count of removed elements, which can be 0, 1, or many

Inherited from
Mutable
Source
Mutable.scala
def replaceAll(v: ~[A]): Unit

Replace everything

Replace everything

Discards all old elements and adds all provided elements

Inherited from
Mutable
Source
Mutable.scala
def size: Int
Inherited from
Collection
Source
__.scala