trait IntSet[T <: IntSet[T]] extends AnyRef
- Alphabetic
- By Inheritance
- IntSet
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def +(i: Int): T
- abstract def -(i: Int): T
- abstract def contains(value: Int): Boolean
- abstract def exists(p: (Int) => Boolean): Boolean
- abstract def flatMap(f: (Int) => T): T
- abstract def foldLeft[B](z: B)(f: (B, Int) => B): B
- abstract def forall(f: (Int) => Boolean): Boolean
- abstract def foreach[U](f: (Int) => U): Unit
- abstract def hasMultipleElements: Boolean
Tests if this set has more than one element (complexity: O(1)).
- abstract def head: Int
- abstract def isEmpty: Boolean
- abstract def isSingletonSet: Boolean
Tests if this set has exactly one element (complexity: O(1)).
- abstract def iterator: IntIterator
- abstract def map(map: Array[Int]): T
Uses the keys of this set to map them to the value found in the given array at the respective index.
- abstract def map(f: (Int) => Int): T
- abstract 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.
- abstract def toList: List[Int]
- abstract def withFilter(p: (Int) => Boolean): T
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ++(that: IntIterator): T
- final def ++(that: IterableOnce[Int]): T
- final def ++(that: T): T
- final def --(is: IntSet[_]): T
- final def --(is: IterableOnce[Int]): T
- 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()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[A <: AnyRef](f: (Int) => A): Set[A]
- final def mkString(in: String): String
- final def mkString(pre: String, in: String, post: String): String
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nonEmpty: Boolean
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toArray: Array[Int]
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def transform[B, To](f: (Int) => B, b: Builder[B, To]): To
- 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])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated