final case class IntTrieSet1 extends IntTrieSetL with Product with Serializable
- Source
- IntTrieSet.scala
- Alphabetic
- By Inheritance
- IntTrieSet1
- Serializable
- Product
- Equals
- IntTrieSetL
- IntTrieSet
- IntWorkSet
- IntCollectionWithStableOrdering
- IntSet
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !++!(that: IntTrieSet): IntTrieSet
Merges the values of this and the given set into the set that is larger.
Merges the values of this and the given set into the set that is larger. If both sets have equal sizes, then the given one is merged into this one.
- Definition Classes
- IntTrieSet
- See also
+!(Int)
for details!
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(i: Int): IntTrieSet
- Definition Classes
- IntTrieSet1 → IntSet
- def +!(i: Int): IntTrieSet
Tries to add the given method to this trie set by mutating the set if possible.
Tries to add the given method to this trie set by mutating the set if possible. Due to the internal organization, mutating the set is not always possible. In this case, a new set containing the new value is returned. Hence, the return value does not have to be ignored!
- Definition Classes
- IntTrieSet1 → IntTrieSet
- final def ++(that: IntIterator): IntTrieSet
- Definition Classes
- IntSet
- final def ++(that: IterableOnce[Int]): IntTrieSet
- Definition Classes
- IntSet
- final def ++(that: IntTrieSet): IntTrieSet
- Definition Classes
- IntSet
- final def ++!(that: IntTrieSet): IntTrieSet
- Definition Classes
- IntTrieSet
- See also
+!(Int)
for details!
- def -(i: Int): IntTrieSet
- Definition Classes
- IntTrieSet1 → IntSet
- final def --(is: IntSet[_]): IntTrieSet
- Definition Classes
- IntSet
- final def --(is: IterableOnce[Int]): IntTrieSet
- Definition Classes
- IntSet
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def contains(value: Int): Boolean
- Definition Classes
- IntTrieSet1 → IntSet
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(other: IntTrieSet): Boolean
- Definition Classes
- IntTrieSet1 → IntTrieSet
- final def equals(other: Any): Boolean
- Definition Classes
- IntTrieSet → AnyRef → Any
- def exists(p: (Int) => Boolean): Boolean
- Definition Classes
- IntTrieSet1 → IntSet
- def filter(p: (Int) => Boolean): IntTrieSet
- Definition Classes
- IntTrieSet1 → IntTrieSet
- def flatMap(f: (Int) => IntTrieSet): IntTrieSet
- Definition Classes
- IntTrieSet1 → IntSet
- def foldLeft[B](z: B)(f: (B, Int) => B): B
- Definition Classes
- IntTrieSet1 → IntSet
- def forall(f: (Int) => Boolean): Boolean
- Definition Classes
- IntTrieSet1 → IntSet
- def foreach[U](f: (Int) => U): Unit
- Definition Classes
- IntTrieSet1 → IntSet
- def foreachPair[U](f: (Int, Int) => U): Unit
Returns each pairing of two values.
Returns each pairing of two values. I.e., if the set contains 1, 4, 8, the pairings ((1,4) XOR (4,1)),((1,8) XOR (8,1)) and ((4,8) XOR (8,4)) will be returned; hence, the order between the two values is not defined.
- Definition Classes
- IntTrieSet1 → IntTrieSet
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hasMultipleElements: Boolean
Tests if this set has more than one element (complexity: O(1)).
Tests if this set has more than one element (complexity: O(1)).
- Definition Classes
- IntTrieSet1 → IntSet
- def hashCode(): Int
- Definition Classes
- IntTrieSet1 → AnyRef → Any
- def head: Int
- Definition Classes
- IntTrieSet1 → IntSet
- def headAndTail: IntRefPair[IntTrieSet]
Returns some value and removes it from this set.
Returns some value and removes it from this set.
- Definition Classes
- IntTrieSet1 → IntTrieSet → IntWorkSet
- val i: Int
- def intersect(other: IntTrieSet): IntTrieSet
- Definition Classes
- IntTrieSet1 → IntTrieSet
- def isEmpty: Boolean
- Definition Classes
- IntTrieSet1 → IntSet
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isSingletonSet: Boolean
Tests if this set has exactly one element (complexity: O(1)).
Tests if this set has exactly one element (complexity: O(1)).
- Definition Classes
- IntTrieSet1 → IntSet
- def iterator: IntIterator
- Definition Classes
- IntTrieSet1 → IntSet
- def map(map: Array[Int]): IntTrieSet
Uses the keys of this set to map them to the value found in the given array at the respective index.
Uses the keys of this set to map them to the value found in the given array at the respective index.
- Definition Classes
- IntTrieSet1 → IntSet
- def map(f: (Int) => Int): IntTrieSet
- Definition Classes
- IntTrieSet1 → IntSet
- def map[A <: AnyRef](f: (Int) => A): Set[A]
- Definition Classes
- IntSet
- final def mkString(in: String): String
- Definition Classes
- IntSet
- final def mkString(pre: String, in: String, post: String): String
- Definition Classes
- IntSet
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nonEmpty: Boolean
- Definition Classes
- IntSet
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def size: Int
The size of the set; may not be a constant operation; if possible use isEmpty, nonEmpty, etc.; or lookup the complexity in the concrete data structures.
The size of the set; may not be a constant operation; if possible use isEmpty, nonEmpty, etc.; or lookup the complexity in the concrete data structures.
- Definition Classes
- IntTrieSet1 → IntSet
- final def subsetOf(other: IntTrieSet): Boolean
- Definition Classes
- IntTrieSet → IntCollectionWithStableOrdering
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toArray: Array[Int]
- Definition Classes
- IntSet
- def toList: List[Int]
- Definition Classes
- IntTrieSet1 → IntSet
- final def toString(): String
- Definition Classes
- IntTrieSet → AnyRef → Any
- final def transform[B, To](f: (Int) => B, b: Builder[B, To]): To
- Definition Classes
- IntSet
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withFilter(p: (Int) => Boolean): IntTrieSet
- Definition Classes
- IntTrieSet1 → IntTrieSet → IntSet
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated