Char.G.Set.Z_Void

object z_Void extends Char.G.Set[scala.Nothing] with Void
Source
Set.scala
trait Void
trait Able.Void
class Char.G.Set[scala.Nothing]
trait Char.G.Collection[scala.Nothing]
trait Any.Z.PrimitiveTag.Char
trait Any.Z.PrimitiveTag
class Set[scala.Nothing]
trait Able.Contain[scala.Nothing]
trait Collection[scala.Nothing]
trait Able.Size
trait Able.Stream[scala.Nothing]
class java.lang.Object
trait scala.Matchable
class Any

Def

@targetName("join")
inline def +(v: scala.Nothing): this.type

Alias for join

Alias for join

If given value does not exist in current collection, a new Set is created with this value

 var set: Set[Int]=VOID

 set = set + 1 + 2 + 3 + 1 + 2 + 3

 set.stream.tp  // Prints Stream(1, 2, 3)
Inherited from
Set
Source
__.scala
@targetName("joinAll")
inline def ++(v: Stream[scala.Nothing]): this.type

Alias for joinAll

Alias for joinAll

Creates a Set with a stream of only unique elements joined in

 var set: Set[Int]=VOID

 set = set ++ (1 <> 5) ++ (3 <> 8) ++ (5 <> 10)

 set.stream.sort.tp  // Prints Stream(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
Inherited from
Set
Source
__.scala
override def contains(v: scala.Nothing): Boolean
Definition Classes
Inherited from
Set
Source
Set.scala
final def isVoid: Boolean

Returns "true"

Returns "true"

Method is final with true value hardcoded.

Inherited from
Void
Source
__.scala
def join(v: scala.Nothing): Char.G.Set[scala.Nothing]
Inherited from
Set
Source
Set.scala
def joinAll(v: Stream[scala.Nothing]): Char.G.Set[scala.Nothing]
Inherited from
Set
Source
Set.scala
def size: Int
Inherited from
Set
Source
Set.scala
def stream: Char.G.Stream[scala.Nothing]
Inherited from
Set
Source
Set.scala