Packages

final class ExtBitSet extends BitSet

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtBitSet
  2. BitSet
  3. Serializable
  4. Serializable
  5. BitSet
  6. BitSetLike
  7. SortedSet
  8. SortedSet
  9. SortedSetLike
  10. Sorted
  11. AbstractSet
  12. Set
  13. SetLike
  14. Cloneable
  15. Cloneable
  16. Cloneable
  17. Shrinkable
  18. Builder
  19. Growable
  20. Clearable
  21. Scriptable
  22. Set
  23. SetLike
  24. Subtractable
  25. GenSet
  26. GenericSetTemplate
  27. GenSetLike
  28. Function1
  29. AbstractIterable
  30. Iterable
  31. Traversable
  32. Mutable
  33. AbstractIterable
  34. Iterable
  35. IterableLike
  36. Equals
  37. GenIterable
  38. GenIterableLike
  39. AbstractTraversable
  40. Traversable
  41. GenTraversable
  42. GenericTraversableTemplate
  43. TraversableLike
  44. GenTraversableLike
  45. Parallelizable
  46. TraversableOnce
  47. GenTraversableOnce
  48. FilterMonadic
  49. HasNewBuilder
  50. AnyRef
  51. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by MonadOps
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  7. by alternateImplicit
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ExtBitSet(initWords: Int = incrWords)
  2. new ExtBitSet(words: Array[Long])

Type Members

  1. type Self = BitSet
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &(other: BitSet): BitSet
    Definition Classes
    BitSetLike
  4. def &(that: GenSet[Int]): BitSet
    Definition Classes
    GenSetLike
  5. def &=(other: ExtBitSet): ExtBitSet.this.type
  6. def &=(other: BitSet): ExtBitSet.this.type
    Definition Classes
    BitSet
  7. def &~(other: BitSet): BitSet
    Definition Classes
    BitSetLike
  8. def &~(that: GenSet[Int]): BitSet
    Definition Classes
    GenSetLike
  9. def &~=(other: BitSet): ExtBitSet.this.type
    Definition Classes
    BitSet
  10. def +(elem1: Int, elem2: Int, elems: Int*): BitSet
    Definition Classes
    SetLike → SetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new set. Use += to add an element to this set and return that set itself.

  11. def +(elem: Int): BitSet
    Definition Classes
    SetLike → SetLike → GenSetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) + creates a new set. Use += to add an element to this set and return that set itself.

  12. def ++(xs: GenTraversableOnce[Int]): BitSet
    Definition Classes
    SetLike → SetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new set. Use ++= to add elements to this set and return that set itself.

  13. def ++[B >: Int, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  14. def ++:[B >: Int, That](that: Traversable[B])(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike
  15. def ++:[B >: Int, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike
  16. def ++=(xs: TraversableOnce[Int]): ExtBitSet.this.type
    Definition Classes
    Growable
  17. def +=(elem: Int): ExtBitSet.this.type
    Definition Classes
    BitSet → SetLike → Builder → Growable
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  18. def +=(elem1: Int, elem2: Int, elems: Int*): ExtBitSet.this.type
    Definition Classes
    Growable
  19. def -(elem1: Int, elem2: Int, elems: Int*): BitSet
    Definition Classes
    SetLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new set. Use -= to remove an element from this set and return that set itself.

  20. def -(elem: Int): BitSet
    Definition Classes
    SetLike → SetLike → Subtractable → GenSetLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new set. Use -= to remove an element from this set and return that set itself.

  21. def --(xs: GenTraversableOnce[Int]): BitSet
    Definition Classes
    SetLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new set. Use --= to remove elements from this set and return that set itself.

  22. def --=(xs: TraversableOnce[Int]): ExtBitSet.this.type
    Definition Classes
    Shrinkable
  23. def -=(elem: Int): ExtBitSet.this.type
    Definition Classes
    BitSet → SetLike → Shrinkable
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  24. def -=(elem1: Int, elem2: Int, elems: Int*): ExtBitSet.this.type
    Definition Classes
    Shrinkable
  25. def ->[B](y: B): (ExtBitSet, B)
    Implicit
    This member is added by an implicit conversion from ExtBitSet to ArrowAssoc[ExtBitSet] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  26. def /:[B](z: B)(op: (B, Int) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def :\[B](z: B)(op: (Int, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  28. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  29. def ^(other: BitSet): BitSet
    Definition Classes
    BitSetLike
  30. def ^=(other: BitSet): ExtBitSet.this.type
    Definition Classes
    BitSet
  31. def add(elem: Int): Boolean
    Definition Classes
    BitSet → SetLike
  32. def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    BitSetLike → TraversableOnce
  33. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  34. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  35. def aggregate[B](z: ⇒ B)(seqop: (B, Int) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. def andThen[A](g: (Boolean) ⇒ A): (Int) ⇒ A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  37. def apply(h: Handle): Boolean
    Annotations
    @inline()
  38. def apply(idx: Int, mask: Long): Boolean
    Annotations
    @inline()
  39. def apply(elem: Int): Boolean
    Definition Classes
    GenSetLike → Function1
  40. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  41. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  42. def clear(): Unit
    Definition Classes
    BitSet → SetLike → Builder → Growable → Clearable
  43. def clone(): ExtBitSet
    Definition Classes
    ExtBitSet → BitSet → SetLike → Cloneable → AnyRef
  44. def cloneWords: Array[Long]

    Array containing the internal words.

  45. def collect[B, That](pf: PartialFunction[Int, B])(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  46. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]
    Definition Classes
    TraversableOnce
  47. def companion: GenericCompanion[Set]
    Definition Classes
    Set → Set → GenSet → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  48. def compare(k0: Int, k1: Int): Int
    Definition Classes
    Sorted
  49. def compose[A](g: (A) ⇒ Int): (A) ⇒ Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  50. def contains(elem: Int): Boolean
    Definition Classes
    BitSetLike → SetLike → GenSetLike
  51. def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  52. def copyToArray[B >: Int](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  53. def copyToArray[B >: Int](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  54. def copyToBuffer[B >: Int](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  55. def count(p: (Int) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  56. def diff(that: GenSet[Int]): BitSet
    Definition Classes
    SetLike → GenSetLike
  57. def drop(n: Int): BitSet
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  58. def dropRight(n: Int): BitSet
    Definition Classes
    IterableLike
  59. def dropWhile(p: (Int) ⇒ Boolean): BitSet
    Definition Classes
    TraversableLike → GenTraversableLike
  60. final var elems: Array[Long]
    Attributes
    protected
    Definition Classes
    BitSet
  61. def empty: BitSet
    Definition Classes
    BitSet → BitSet → BitSetLike → SortedSet → SortedSet → SetLike → GenericSetTemplate
  62. final def ensureCapacity(idx: Int): Unit
    Attributes
    protected
    Definition Classes
    BitSet
  63. def ensuring(cond: (ExtBitSet) ⇒ Boolean, msg: ⇒ Any): ExtBitSet
    Implicit
    This member is added by an implicit conversion from ExtBitSet to Ensuring[ExtBitSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  64. def ensuring(cond: (ExtBitSet) ⇒ Boolean): ExtBitSet
    Implicit
    This member is added by an implicit conversion from ExtBitSet to Ensuring[ExtBitSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  65. def ensuring(cond: Boolean, msg: ⇒ Any): ExtBitSet
    Implicit
    This member is added by an implicit conversion from ExtBitSet to Ensuring[ExtBitSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  66. def ensuring(cond: Boolean): ExtBitSet
    Implicit
    This member is added by an implicit conversion from ExtBitSet to Ensuring[ExtBitSet] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  67. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  68. def equals(that: Any): Boolean
    Definition Classes
    GenSetLike → Equals → AnyRef → Any
  69. def exists(p: (Int) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  70. def filter(p: (Int) ⇒ Boolean): BitSet
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def filterNot(p: (Int) ⇒ Boolean): BitSet
    Definition Classes
    TraversableLike → GenTraversableLike
  72. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  73. def find(p: (Int) ⇒ Boolean): Option[Int]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  74. def firstKey: Int
    Definition Classes
    SortedSetLike → Sorted
  75. def flatMap[B, That](f: (Int) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  76. def flatten[B](implicit asTraversable: (Int) ⇒ GenTraversableOnce[B]): Set[B]
    Definition Classes
    GenericTraversableTemplate
  77. def fold[A1 >: Int](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def foldLeft[B](z: B)(op: (B, Int) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def foldRight[B](z: B)(op: (Int, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  80. def forall(p: (Int) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  81. def foreach[U](f: (Int) ⇒ U): Unit
    Definition Classes
    BitSetLike → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  82. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ExtBitSet to StringFormat[ExtBitSet] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  83. def from(from: Int): BitSet
    Definition Classes
    SortedSetLike → Sorted
  84. def fromBitMaskNoCopy(words: Array[Long]): BitSet
    Attributes
    protected
    Definition Classes
    BitSet → BitSetLike
  85. def genericBuilder[B]: Builder[B, Set[B]]
    Definition Classes
    GenericTraversableTemplate
  86. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  87. def groupBy[K](f: (Int) ⇒ K): Map[K, BitSet]
    Definition Classes
    TraversableLike → GenTraversableLike
  88. def grouped(size: Int): Iterator[BitSet]
    Definition Classes
    IterableLike
  89. def hasAll(j: Iterator[Int]): Boolean
    Attributes
    protected
    Definition Classes
    Sorted
  90. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  91. def hashCode(): Int
    Definition Classes
    GenSetLike → AnyRef → Any
  92. def head: Int
    Definition Classes
    BitSetLike → IterableLike → TraversableLike → GenTraversableLike
  93. def headOption: Option[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  94. def init: BitSet
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def inits: Iterator[BitSet]
    Definition Classes
    TraversableLike
  96. def intersect(that: GenSet[Int]): BitSet
    Definition Classes
    GenSetLike
  97. def isEmpty: Boolean
    Definition Classes
    BitSetLike → SetLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  98. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  99. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  100. def iterator: Iterator[Int]
    Definition Classes
    BitSetLike → GenSetLike → IterableLike → GenIterableLike
  101. def iteratorFrom(start: Int): Iterator[Int]
    Definition Classes
    SortedSetLike
  102. def keySet: BitSet
    Definition Classes
    SortedSetLike → Sorted
  103. def keysIteratorFrom(start: Int): scala.collection.AbstractIterator[Int]
    Definition Classes
    BitSetLike → Sorted
  104. def last: Int
    Definition Classes
    BitSetLike → TraversableLike → GenTraversableLike
  105. def lastKey: Int
    Definition Classes
    SortedSetLike → Sorted
  106. def lastOption: Option[Int]
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def lowestOneBit: Option[Handle]
  108. def map[B, That](f: (Int) ⇒ B)(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    SetLike → TraversableLike → GenTraversableLike → FilterMonadic
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) Set.map now returns a Set, so it will discard duplicate values.

  109. def mapResult[NewTo](f: (BitSet) ⇒ NewTo): Builder[Int, NewTo]
    Definition Classes
    Builder
  110. def max[B >: Int](implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def maxBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def min[B >: Int](implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def minBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  118. def newBuilder: Builder[Int, BitSet]
    Attributes
    protected[this]
    Definition Classes
    SetLike → SetLike → TraversableLike → HasNewBuilder
  119. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  121. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  122. def nrWords: Int
  123. def nwords: Int
    Attributes
    protected
    Definition Classes
    BitSet → BitSetLike
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  124. def onOrFindUnset(other: ExtBitSet): Option[Handle]
  125. implicit def ordering: Ordering[Int]
    Definition Classes
    BitSetLike → SortedSetLike → Sorted
  126. def par: ParSet[Int]
    Definition Classes
    Parallelizable
  127. def parCombiner: Combiner[Int, ParSet[Int]]
    Attributes
    protected[this]
    Definition Classes
    SetLike → SetLike → TraversableLike → Parallelizable
  128. def partition(p: (Int) ⇒ Boolean): (BitSet, BitSet)
    Definition Classes
    TraversableLike → GenTraversableLike
  129. def product[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def range(from: Int, until: Int): BitSet
    Definition Classes
    SortedSetLike → Sorted
  131. def rangeImpl(from: Option[Int], until: Option[Int]): BitSet
    Definition Classes
    BitSetLike → SortedSetLike → Sorted
  132. def reduce[A1 >: Int](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def reduceLeft[B >: Int](op: (B, Int) ⇒ B): B
    Definition Classes
    TraversableOnce
  134. def reduceLeftOption[B >: Int](op: (B, Int) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def reduceOption[A1 >: Int](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def reduceRight[B >: Int](op: (Int, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  137. def reduceRightOption[B >: Int](op: (Int, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def remove(elem: Int): Boolean
    Definition Classes
    BitSet → SetLike
  139. def repr: BitSet
    Definition Classes
    TraversableLike → GenTraversableLike
  140. def result(): BitSet
    Definition Classes
    SetLike → Builder
  141. def retain(p: (Int) ⇒ Boolean): Unit
    Definition Classes
    SetLike
  142. def reversed: List[Int]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  143. def sameElements[B >: Int](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  144. def scan[B >: Int, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  145. def scanLeft[B, That](z: B)(op: (B, Int) ⇒ B)(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  146. def scanRight[B, That](z: B)(op: (Int, B) ⇒ B)(implicit bf: CanBuildFrom[BitSet, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  147. def seq: Set[Int]
    Definition Classes
    Set → Set → GenSet → GenSetLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  148. def size: Int
    Definition Classes
    BitSetLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  149. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Definition Classes
    Builder
  150. def sizeHint(coll: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  151. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  152. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  153. def sizeHintIfCheap: Int
    Attributes
    protected[scala.collection]
    Definition Classes
    GenTraversableOnce
  154. def slice(from: Int, until: Int): BitSet
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  155. def sliding(size: Int, step: Int): Iterator[BitSet]
    Definition Classes
    IterableLike
  156. def sliding(size: Int): Iterator[BitSet]
    Definition Classes
    IterableLike
  157. def span(p: (Int) ⇒ Boolean): (BitSet, BitSet)
    Definition Classes
    TraversableLike → GenTraversableLike
  158. def splitAt(n: Int): (BitSet, BitSet)
    Definition Classes
    TraversableLike → GenTraversableLike
  159. def stringPrefix: String
    Definition Classes
    ExtBitSet → BitSetLike → SetLike → TraversableLike → GenTraversableLike
  160. def subsetOf(other: BitSet): Boolean
    Definition Classes
    BitSetLike
  161. def subsetOf(that: GenSet[Int]): Boolean
    Definition Classes
    SortedSetLike → GenSetLike
  162. def subsets(): Iterator[BitSet]
    Definition Classes
    SetLike
  163. def subsets(len: Int): Iterator[BitSet]
    Definition Classes
    SetLike
  164. def sum[B >: Int](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def summary: String

    Summary of the words each of which formatted as <index>:<bitCount>.

  166. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  167. def tail: BitSet
    Definition Classes
    TraversableLike → GenTraversableLike
  168. def tails: Iterator[BitSet]
    Definition Classes
    TraversableLike
  169. def take(n: Int): BitSet
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  170. def takeRight(n: Int): BitSet
    Definition Classes
    IterableLike
  171. def takeWhile(p: (Int) ⇒ Boolean): BitSet
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  172. def thisCollection: Iterable[Int]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  173. def to(to: Int): BitSet
    Definition Classes
    Sorted
  174. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Int, Col[Int]]): Col[Int]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  175. def toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  176. def toBitMask: Array[Long]
    Definition Classes
    BitSetLike
  177. def toBuffer[A1 >: Int]: Buffer[A1]
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  178. def toCollection(repr: BitSet): Iterable[Int]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  179. def toIndexedSeq: IndexedSeq[Int]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  180. def toIterable: Iterable[Int]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  181. def toIterator: Iterator[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  182. def toList: List[Int]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  183. def toMap[T, U](implicit ev: <:<[Int, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  184. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from ExtBitSet to CollectionsHaveToParArray[ExtBitSet, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (ExtBitSet) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  185. def toSeq: Seq[Int]
    Definition Classes
    SetLike → SetLike → TraversableOnce → GenTraversableOnce
  186. def toSet[B >: Int]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  187. def toStream: Stream[Int]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  188. def toString(): String

    All bits of all words.

    All bits of all words.

    Definition Classes
    ExtBitSet → SetLike → Function1 → TraversableLike → AnyRef → Any
  189. def toTraversable: Traversable[Int]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  190. def toVector: Vector[Int]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  191. def transpose[B](implicit asTraversable: (Int) ⇒ GenTraversableOnce[B]): Set[Set[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  192. def unary_~: ExtBitSet
  193. def union(that: GenSet[Int]): BitSet
    Definition Classes
    SetLike → GenSetLike
  194. def until(until: Int): BitSet
    Definition Classes
    SortedSetLike → Sorted
  195. def unzip[A1, A2](implicit asPair: (Int) ⇒ (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    GenericTraversableTemplate
  196. def unzip3[A1, A2, A3](implicit asTriple: (Int) ⇒ (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    GenericTraversableTemplate
  197. def update(h: Handle, isSet: Boolean): Unit
    Annotations
    @inline()
  198. def update(idx: Int, mask: Long, isSet: Boolean): Unit
  199. def update(elem: Int, included: Boolean): Unit
    Definition Classes
    SetLike
  200. final def updateWord(idx: Int, w: Long): Unit
    Attributes
    protected
    Definition Classes
    BitSet
  201. def view(from: Int, until: Int): IterableView[Int, BitSet]
    Definition Classes
    IterableLike → TraversableLike
  202. def view: IterableView[Int, BitSet]
    Definition Classes
    IterableLike → TraversableLike
  203. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  204. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  205. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  206. def withFilter(p: (Int) ⇒ Boolean): FilterMonadic[Int, BitSet]
    Definition Classes
    TraversableLike → FilterMonadic
  207. def word(idx: Int): Long
    Attributes
    protected
    Definition Classes
    BitSet → BitSetLike
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  208. def zip[A1 >: Int, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[BitSet, (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  209. def zipAll[B, A1 >: Int, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[BitSet, (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  210. def zipWithIndex[A1 >: Int, That](implicit bf: CanBuildFrom[BitSet, (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  211. def |(other: BitSet): BitSet
    Definition Classes
    BitSetLike
  212. def |(that: GenSet[Int]): BitSet
    Definition Classes
    GenSetLike
  213. def |=(other: BitSet): ExtBitSet.this.type
    Definition Classes
    BitSet
  214. def [B](y: B): (ExtBitSet, B)
    Implicit
    This member is added by an implicit conversion from ExtBitSet to ArrowAssoc[ExtBitSet] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ExtBitSet to any2stringadd[ExtBitSet] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (extBitSet: any2stringadd[ExtBitSet]).+(other)
    Definition Classes
    any2stringadd
  2. def filter(p: (Int) ⇒ Boolean): TraversableOnce[Int]
    Implicit
    This member is added by an implicit conversion from ExtBitSet to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (extBitSet: MonadOps[Int]).filter(p)
    Definition Classes
    MonadOps
  3. def flatMap[B](f: (Int) ⇒ GenTraversableOnce[B]): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from ExtBitSet to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (extBitSet: MonadOps[Int]).flatMap(f)
    Definition Classes
    MonadOps
  4. def map[B](f: (Int) ⇒ B): TraversableOnce[B]
    Implicit
    This member is added by an implicit conversion from ExtBitSet to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (extBitSet: MonadOps[Int]).map(f)
    Definition Classes
    MonadOps
  5. def withFilter(p: (Int) ⇒ Boolean): Iterator[Int]
    Implicit
    This member is added by an implicit conversion from ExtBitSet to MonadOps[Int] performed by method MonadOps in scala.collection.TraversableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (extBitSet: MonadOps[Int]).withFilter(p)
    Definition Classes
    MonadOps

Deprecated Value Members

  1. def <<(cmd: Message[Int]): Unit
    Definition Classes
    SetLike → Scriptable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) scripting is deprecated

  2. def toImmutable: BitSet
    Definition Classes
    BitSet
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) If this BitSet contains a value that is 128 or greater, the result of this method is an 'immutable' BitSet that shares state with this mutable BitSet. Thus, if the mutable BitSet is modified, it will violate the immutability of the result.

Inherited from BitSet

Inherited from Serializable

Inherited from Serializable

Inherited from BitSet

Inherited from BitSetLike[BitSet]

Inherited from SortedSet[Int]

Inherited from SortedSet[Int]

Inherited from SortedSetLike[Int, BitSet]

Inherited from Sorted[Int, BitSet]

Inherited from AbstractSet[Int]

Inherited from Set[Int]

Inherited from SetLike[Int, BitSet]

Inherited from Cloneable[Set[Int]]

Inherited from Cloneable

Inherited from Cloneable

Inherited from Shrinkable[Int]

Inherited from Builder[Int, BitSet]

Inherited from Growable[Int]

Inherited from Clearable

Inherited from Scriptable[Int]

Inherited from Set[Int]

Inherited from SetLike[Int, BitSet]

Inherited from Subtractable[Int, BitSet]

Inherited from GenSet[Int]

Inherited from GenericSetTemplate[Int, Set]

Inherited from GenSetLike[Int, BitSet]

Inherited from (Int) ⇒ Boolean

Inherited from AbstractIterable[Int]

Inherited from Iterable[Int]

Inherited from Traversable[Int]

Inherited from Mutable

Inherited from AbstractIterable[Int]

Inherited from Iterable[Int]

Inherited from IterableLike[Int, BitSet]

Inherited from Equals

Inherited from GenIterable[Int]

Inherited from GenIterableLike[Int, BitSet]

Inherited from AbstractTraversable[Int]

Inherited from Traversable[Int]

Inherited from GenTraversable[Int]

Inherited from GenericTraversableTemplate[Int, Set]

Inherited from TraversableLike[Int, BitSet]

Inherited from GenTraversableLike[Int, BitSet]

Inherited from Parallelizable[Int, ParSet[Int]]

Inherited from TraversableOnce[Int]

Inherited from GenTraversableOnce[Int]

Inherited from FilterMonadic[Int, BitSet]

Inherited from HasNewBuilder[Int, BitSet]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion CollectionsHaveToParArray from ExtBitSet to CollectionsHaveToParArray[ExtBitSet, T]

Inherited by implicit conversion MonadOps from ExtBitSet to MonadOps[Int]

Inherited by implicit conversion any2stringadd from ExtBitSet to any2stringadd[ExtBitSet]

Inherited by implicit conversion StringFormat from ExtBitSet to StringFormat[ExtBitSet]

Inherited by implicit conversion Ensuring from ExtBitSet to Ensuring[ExtBitSet]

Inherited by implicit conversion ArrowAssoc from ExtBitSet to ArrowAssoc[ExtBitSet]

Inherited by implicit conversion alternateImplicit from ExtBitSet to ForceImplicitAmbiguity

Ungrouped