Int.G.Collection.Mutable

trait Mutable[A <: Any.Int] extends Int.G.Collection[A] with Collection.M[A]
trait Collection.Mutable[Int.G.Collection.Mutable.A]
trait Able.Add[Int.G.Collection.Mutable.A]
trait Int.G.Collection[Int.G.Collection.Mutable.A]
trait Any.Z.PrimitiveTag.Int
trait Any.Z.PrimitiveTag
trait Able.Contain[Int.G.Collection.Mutable.A]
trait Collection[Int.G.Collection.Mutable.A]
trait Able.Size
trait Able.Stream[Int.G.Collection.Mutable.A]
class java.lang.Object
trait scala.Matchable
class Any
trait Int.G.Idx.Mutable[Int.G.Idx.Mutable.A]
class Int.G.Buffer[Int.G.Buffer.A]

Def

inline def ++=(v: Opt[A]): Int.G.Collection.M[A]

Alias for addAll

Alias for addAll

Generally Opt could be added as a stream.

This overload is sligtly more efficient, but it is also required for mapped Opt expressions, where Opt type is harder to resolve and it would not compile.

Inherited from
Add
Source
Add.scala
inline def ++=(v: Stream[A]): Int.G.Collection.M[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.stream.tp // Stream(1, 2, 3, 4, 5, 6, 7, 8, 9)
Inherited from
Add
Source
Add.scala
inline def +=(v: A): Int.G.Collection.M[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.stream.tp // Prints Stream(1, 2, 3, 4, 5, 6)
Inherited from
Add
Source
Add.scala
def --=(v: Stream[A]): Int.G.Collection.M[A]

Alias for removeAll

Alias for removeAll

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

Returns the collection itself

Inherited from
Mutable
Source
Mutable.scala
def -=(v: A): Int.G.Collection.M[A]

Alias for remove

Alias for remove

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

Returns the collection itself

Inherited from
Mutable
Source
Mutable.scala
def add(v: A): Unit
def addAll(v: Stream[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( Stream(7,8,9))

  x.stream.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 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: Stream[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 replaceWith(v: Stream[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
Inherited from
Collection
Source
Collection.scala