Packages

object BitSet extends SpecificIterableFactory[Int, BitSet] with java.io.Serializable

This object provides a set of operations to create immutable.BitSet values.

Annotations
@nowarn() @SerialVersionUID()
Source
BitSet.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BitSet
  2. Serializable
  3. SpecificIterableFactory
  4. Factory
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Deprecated Type Members

  1. class BitSet1 extends BitSet
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Implementation classes of BitSet should not be accessed directly

  2. class BitSet2 extends BitSet
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Implementation classes of BitSet should not be accessed directly

  3. class BitSetN extends BitSet
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Implementation classes of BitSet should not be accessed directly

Value Members

  1. def apply(xs: Int*): BitSet
    Definition Classes
    SpecificIterableFactory
  2. final val empty: BitSet
    Definition Classes
    BitSetSpecificIterableFactory
  3. def fill(n: Int)(elem: => Int): BitSet
    Definition Classes
    SpecificIterableFactory
  4. def fromBitMask(elems: Array[Long]): BitSet

    A bitset containing all the bits in an array

  5. def fromBitMaskNoCopy(elems: Array[Long]): BitSet

    A bitset containing all the bits in an array, wrapping the existing array without copying.

  6. def fromSpecific(it: IterableOnce[Int]): BitSet

    it

    Source collection

    returns

    A collection of type C containing the same elements as the source collection it.

    Definition Classes
    BitSetFactory
  7. def newBuilder: Builder[Int, BitSet]

    Get a Builder for the collection.

    Get a Builder for the collection. For non-strict collection types this will use an intermediate buffer. Building collections with fromSpecific is preferred because it can be lazy for lazy collections.

    Definition Classes
    BitSetSpecificIterableFactoryFactory
  8. implicit def specificIterableFactory: Factory[Int, BitSet]
    Definition Classes
    SpecificIterableFactory