Class

scalax.collection.mutable

ExtBitSet

Related Doc: package mutable

Permalink

final class ExtBitSet extends BitSet

Attributes
protected[scalax.collection]
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
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)

    Permalink
  2. new ExtBitSet(words: Array[Long])

    Permalink

Type Members

  1. type Self = BitSet

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def &(other: BitSet): BitSet

    Permalink
    Definition Classes
    BitSetLike
  4. def &(that: GenSet[Int]): BitSet

    Permalink
    Definition Classes
    GenSetLike
  5. def &=(other: ExtBitSet): ExtBitSet.this.type

    Permalink
  6. def &=(other: BitSet): ExtBitSet.this.type

    Permalink
    Definition Classes
    BitSet
  7. def &~(other: BitSet): BitSet

    Permalink
    Definition Classes
    BitSetLike
  8. def &~(that: GenSet[Int]): BitSet

    Permalink
    Definition Classes
    GenSetLike
  9. def &~=(other: BitSet): ExtBitSet.this.type

    Permalink
    Definition Classes
    BitSet
  10. def +(elem1: Int, elem2: Int, elems: Int*): BitSet

    Permalink
    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

    Permalink
    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

    Permalink
    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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  14. def ++:[B >: Int, That](that: Traversable[B])(implicit bf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  15. def ++:[B >: Int, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  16. def ++=(xs: TraversableOnce[Int]): ExtBitSet.this.type

    Permalink
    Definition Classes
    Growable
  17. def +=(elem: Int): ExtBitSet.this.type

    Permalink
    Definition Classes
    BitSet → SetLike → Builder → Growable
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  18. def +=(elem1: Int, elem2: Int, elems: Int*): ExtBitSet.this.type

    Permalink
    Definition Classes
    Growable
  19. def -(elem1: Int, elem2: Int, elems: Int*): BitSet

    Permalink
    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

    Permalink
    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

    Permalink
    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

    Permalink
    Definition Classes
    Shrinkable
  23. def -=(elem: Int): ExtBitSet.this.type

    Permalink
    Definition Classes
    BitSet → SetLike → Shrinkable
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  24. def -=(elem1: Int, elem2: Int, elems: Int*): ExtBitSet.this.type

    Permalink
    Definition Classes
    Shrinkable
  25. def ->[B](y: B): (ExtBitSet, B)

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  27. def :\[B](z: B)(op: (Int, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  28. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  29. def ^(other: BitSet): BitSet

    Permalink
    Definition Classes
    BitSetLike
  30. def ^=(other: BitSet): ExtBitSet.this.type

    Permalink
    Definition Classes
    BitSet
  31. def add(elem: Int): Boolean

    Permalink
    Definition Classes
    BitSet → SetLike
  32. def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    BitSetLike → TraversableOnce
  33. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  34. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  35. def aggregate[B](z: ⇒ B)(seqop: (B, Int) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. def andThen[A](g: (Boolean) ⇒ A): (Int) ⇒ A

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  37. def apply(h: Handle): Boolean

    Permalink
    Annotations
    @inline()
  38. def apply(idx: Int, mask: Long): Boolean

    Permalink
    Annotations
    @inline()
  39. def apply(elem: Int): Boolean

    Permalink
    Definition Classes
    GenSetLike → Function1
  40. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  41. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  42. def clear(): Unit

    Permalink
    Definition Classes
    BitSet → SetLike → Builder → Growable → Clearable
  43. def clone(): ExtBitSet

    Permalink
    Definition Classes
    ExtBitSet → BitSet → SetLike → Cloneable → AnyRef
  44. def cloneWords: Array[Long]

    Permalink

    Array containing the internal words.

  45. def collect[B, That](pf: PartialFunction[Int, B])(implicit bf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  46. def collectFirst[B](pf: PartialFunction[Int, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  47. def companion: GenericCompanion[Set]

    Permalink
    Definition Classes
    Set → Set → GenSet → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → GenericTraversableTemplate
  48. def compare(k0: Int, k1: Int): Int

    Permalink
    Definition Classes
    Sorted
  49. def compose[A](g: (A) ⇒ Int): (A) ⇒ Boolean

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  50. def contains(elem: Int): Boolean

    Permalink
    Definition Classes
    BitSetLike → SetLike → GenSetLike
  51. def copyToArray[B >: Int](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  52. def copyToArray[B >: Int](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  53. def copyToArray[B >: Int](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  54. def copyToBuffer[B >: Int](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  55. def count(p: (Int) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  56. def diff(that: GenSet[Int]): BitSet

    Permalink
    Definition Classes
    SetLike → GenSetLike
  57. def drop(n: Int): BitSet

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  58. def dropRight(n: Int): BitSet

    Permalink
    Definition Classes
    IterableLike
  59. def dropWhile(p: (Int) ⇒ Boolean): BitSet

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  60. final var elems: Array[Long]

    Permalink
    Attributes
    protected
    Definition Classes
    BitSet
  61. def empty: BitSet

    Permalink
    Definition Classes
    BitSet → BitSet → BitSetLike → SortedSet → SortedSet → SetLike → GenericSetTemplate
  62. final def ensureCapacity(idx: Int): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BitSet
  63. def ensuring(cond: (ExtBitSet) ⇒ Boolean, msg: ⇒ Any): ExtBitSet

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef
  68. def equals(that: Any): Boolean

    Permalink
    Definition Classes
    GenSetLike → Equals → AnyRef → Any
  69. def exists(p: (Int) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  70. def filter(p: (Int) ⇒ Boolean): BitSet

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def filterNot(p: (Int) ⇒ Boolean): BitSet

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  72. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  73. def find(p: (Int) ⇒ Boolean): Option[Int]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  74. def firstKey: Int

    Permalink
    Definition Classes
    SortedSetLike → Sorted
  75. def flatMap[B, That](f: (Int) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  76. def flatten[B](implicit asTraversable: (Int) ⇒ GenTraversableOnce[B]): Set[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  77. def fold[A1 >: Int](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def foldLeft[B](z: B)(op: (B, Int) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. def foldRight[B](z: B)(op: (Int, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  80. def forall(p: (Int) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  81. def foreach[B](f: (Int) ⇒ B): Unit

    Permalink
    Definition Classes
    BitSetLike → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  82. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    SortedSetLike → Sorted
  84. def fromBitMaskNoCopy(words: Array[Long]): BitSet

    Permalink
    Attributes
    protected
    Definition Classes
    BitSet → BitSetLike
  85. def genericBuilder[B]: Builder[B, Set[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  86. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  87. def groupBy[K](f: (Int) ⇒ K): Map[K, BitSet]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  88. def grouped(size: Int): Iterator[BitSet]

    Permalink
    Definition Classes
    IterableLike
  89. def hasAll(j: Iterator[Int]): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    Sorted
  90. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  91. def hashCode(): Int

    Permalink
    Definition Classes
    GenSetLike → AnyRef → Any
  92. def head: Int

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  93. def headOption: Option[Int]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  94. def init: BitSet

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def inits: Iterator[BitSet]

    Permalink
    Definition Classes
    TraversableLike
  96. def intersect(that: GenSet[Int]): BitSet

    Permalink
    Definition Classes
    GenSetLike
  97. def isEmpty: Boolean

    Permalink
    Definition Classes
    BitSetLike → SetLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  98. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  99. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  100. def iterator: Iterator[Int]

    Permalink
    Definition Classes
    BitSetLike → GenSetLike → IterableLike → GenIterableLike
  101. def iteratorFrom(start: Int): Iterator[Int]

    Permalink
    Definition Classes
    SortedSetLike
  102. def keySet: BitSet

    Permalink
    Definition Classes
    SortedSetLike → Sorted
  103. def keysIteratorFrom(start: Int): scala.collection.AbstractIterator[Int]

    Permalink
    Definition Classes
    BitSetLike → Sorted
  104. def last: Int

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  105. def lastKey: Int

    Permalink
    Definition Classes
    SortedSetLike → Sorted
  106. def lastOption: Option[Int]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def lowestOneBit: Option[Handle]

    Permalink
  108. def map[B, That](f: (Int) ⇒ B)(implicit bf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    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]

    Permalink
    Definition Classes
    Builder
  110. def max[B >: Int](implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  111. def maxBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def min[B >: Int](implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def minBy[B](f: (Int) ⇒ B)(implicit cmp: Ordering[B]): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  114. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  118. def newBuilder: Builder[Int, BitSet]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    SetLike → SetLike → TraversableLike → HasNewBuilder
  119. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  121. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  122. def nrWords: Int

    Permalink
  123. def nwords: Int

    Permalink
    Attributes
    protected
    Definition Classes
    BitSet → BitSetLike
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  124. def onOrFindUnset(other: ExtBitSet): Option[Handle]

    Permalink
  125. implicit def ordering: Ordering[Int]

    Permalink
    Definition Classes
    BitSetLike → SortedSetLike → Sorted
  126. def par: ParSet[Int]

    Permalink
    Definition Classes
    Parallelizable
  127. def parCombiner: Combiner[Int, ParSet[Int]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    SetLike → SetLike → TraversableLike → Parallelizable
  128. def partition(p: (Int) ⇒ Boolean): (BitSet, BitSet)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  129. def product[B >: Int](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  130. def range(from: Int, until: Int): BitSet

    Permalink
    Definition Classes
    SortedSetLike → Sorted
  131. def rangeImpl(from: Option[Int], until: Option[Int]): BitSet

    Permalink
    Definition Classes
    BitSetLike → SortedSetLike → Sorted
  132. def reduce[A1 >: Int](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def reduceLeft[B >: Int](op: (B, Int) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  134. def reduceLeftOption[B >: Int](op: (B, Int) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def reduceOption[A1 >: Int](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def reduceRight[B >: Int](op: (Int, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  137. def reduceRightOption[B >: Int](op: (Int, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  138. def remove(elem: Int): Boolean

    Permalink
    Definition Classes
    BitSet → SetLike
  139. def repr: BitSet

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  140. def result(): BitSet

    Permalink
    Definition Classes
    SetLike → Builder
  141. def retain(p: (Int) ⇒ Boolean): Unit

    Permalink
    Definition Classes
    SetLike
  142. def reversed: List[Int]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  143. def sameElements[B >: Int](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  144. def scan[B >: Int, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  145. def scanLeft[B, That](z: B)(op: (B, Int) ⇒ B)(implicit bf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  146. def scanRight[B, That](z: B)(op: (Int, B) ⇒ B)(implicit bf: CanBuildFrom[BitSet, B, That]): That

    Permalink
    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]

    Permalink
    Definition Classes
    Set → Set → GenSet → GenSetLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  148. def size: Int

    Permalink
    Definition Classes
    BitSetLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  149. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Permalink
    Definition Classes
    Builder
  150. def sizeHint(coll: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  151. def sizeHint(size: Int): Unit

    Permalink
    Definition Classes
    Builder
  152. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Permalink
    Definition Classes
    Builder
  153. def slice(from: Int, until: Int): BitSet

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  154. def sliding(size: Int, step: Int): Iterator[BitSet]

    Permalink
    Definition Classes
    IterableLike
  155. def sliding(size: Int): Iterator[BitSet]

    Permalink
    Definition Classes
    IterableLike
  156. def span(p: (Int) ⇒ Boolean): (BitSet, BitSet)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  157. def splitAt(n: Int): (BitSet, BitSet)

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  158. def stringPrefix: String

    Permalink
    Definition Classes
    ExtBitSet → BitSetLike → SetLike → TraversableLike → GenTraversableLike
  159. def subsetOf(other: BitSet): Boolean

    Permalink
    Definition Classes
    BitSetLike
  160. def subsetOf(that: GenSet[Int]): Boolean

    Permalink
    Definition Classes
    SortedSetLike → GenSetLike
  161. def subsets(): Iterator[BitSet]

    Permalink
    Definition Classes
    SetLike
  162. def subsets(len: Int): Iterator[BitSet]

    Permalink
    Definition Classes
    SetLike
  163. def sum[B >: Int](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  164. def summary: String

    Permalink

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

  165. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  166. def tail: BitSet

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  167. def tails: Iterator[BitSet]

    Permalink
    Definition Classes
    TraversableLike
  168. def take(n: Int): BitSet

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  169. def takeRight(n: Int): BitSet

    Permalink
    Definition Classes
    IterableLike
  170. def takeWhile(p: (Int) ⇒ Boolean): BitSet

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  171. def thisCollection: Iterable[Int]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  172. def to(to: Int): BitSet

    Permalink
    Definition Classes
    Sorted
  173. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Int, Col[Int]]): Col[Int]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  174. def toArray[B >: Int](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  175. def toBitMask: Array[Long]

    Permalink
    Definition Classes
    BitSetLike
  176. def toBuffer[A1 >: Int]: Buffer[A1]

    Permalink
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  177. def toCollection(repr: BitSet): Iterable[Int]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  178. def toIndexedSeq: IndexedSeq[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  179. def toIterable: Iterable[Int]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  180. def toIterator: Iterator[Int]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  181. def toList: List[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  182. def toMap[T, U](implicit ev: <:<[Int, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  183. def toParArray: ParArray[T]

    Permalink
    Implicit information
    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
  184. def toSeq: Seq[Int]

    Permalink
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  185. def toSet[B >: Int]: Set[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  186. def toStream: Stream[Int]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  187. def toString(): String

    Permalink

    All bits of all words.

    All bits of all words.

    Definition Classes
    ExtBitSet → SetLike → Function1 → TraversableLike → AnyRef → Any
  188. def toTraversable: Traversable[Int]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  189. def toVector: Vector[Int]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  190. def transpose[B](implicit asTraversable: (Int) ⇒ GenTraversableOnce[B]): Set[Set[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  191. def unary_~: ExtBitSet

    Permalink
  192. def union(that: GenSet[Int]): BitSet

    Permalink
    Definition Classes
    SetLike → GenSetLike
  193. def until(until: Int): BitSet

    Permalink
    Definition Classes
    SortedSetLike → Sorted
  194. def unzip[A1, A2](implicit asPair: (Int) ⇒ (A1, A2)): (Set[A1], Set[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  195. def unzip3[A1, A2, A3](implicit asTriple: (Int) ⇒ (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  196. def update(h: Handle, isSet: Boolean): Unit

    Permalink
    Annotations
    @inline()
  197. def update(idx: Int, mask: Long, isSet: Boolean): Unit

    Permalink
  198. def update(elem: Int, included: Boolean): Unit

    Permalink
    Definition Classes
    SetLike
  199. final def updateWord(idx: Int, w: Long): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    BitSet
  200. def view(from: Int, until: Int): IterableView[Int, BitSet]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  201. def view: IterableView[Int, BitSet]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  202. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  203. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  204. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  205. def withFilter(p: (Int) ⇒ Boolean): FilterMonadic[Int, BitSet]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  206. def word(idx: Int): Long

    Permalink
    Attributes
    protected
    Definition Classes
    BitSet → BitSetLike
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  207. def zip[A1 >: Int, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[BitSet, (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  208. def zipAll[B, A1 >: Int, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[BitSet, (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  209. def zipWithIndex[A1 >: Int, That](implicit bf: CanBuildFrom[BitSet, (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  210. def |(other: BitSet): BitSet

    Permalink
    Definition Classes
    BitSetLike
  211. def |(that: GenSet[Int]): BitSet

    Permalink
    Definition Classes
    GenSetLike
  212. def |=(other: BitSet): ExtBitSet.this.type

    Permalink
    Definition Classes
    BitSet
  213. def [B](y: B): (ExtBitSet, B)

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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]

    Permalink
    Implicit information
    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]

    Permalink
    Implicit information
    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]

    Permalink
    Implicit information
    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]

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    SetLike → Scriptable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Scripting is deprecated.

  2. def toImmutable: BitSet

    Permalink
    Definition Classes
    BitSet
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.6) 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