| 
 | 
          Scala 1.3.0.7 | |||
BitSetprovides an immutable bitset view on an
  int array. Instances can conveniently be created from instances of
  mutable.ResizableBitSet. Bit indices are between 0..(size-1) inclusive
nba: - 
  array of ints of length n>>>5
  copy: - 
  if yes, then ba is copied and updates will
               not affect this bitset
  | Field Summary | |
| 
        protected | val array: Array[Int] | 
| Method Summary | |
| def apply(i: Int): Booleanreturns true if bit i is set | |
| def compareTo[b >: BitSet](view: (b) => Ordered[b])(other: b): Intlexicographic ordering | |
| 
        override | def equals(that: Any): BooleanChecks if two bitsets are structurally identical. | 
| def makeImmutable: BitSetreturns an immutable bitset with same information | |
| def makeMutable: BitSetreturns a mutable bitset with same information | |
| 
        final | def size: Intnumber of bits in this bitset | 
| def toArray: Array[Int] | |
| Methods inherited from java/lang/Object-class | 
| clone, eq, finalize, getClass, hashCode, notify, notifyAll, synchronized, wait, wait, wait | 
| Methods inherited from scala/Any-class | 
| !=, ==, asInstanceOf, isInstanceOf, match | 
| Methods inherited from scala/Ordered-class | 
| <, <=, >, >= | 
| Methods inherited from scala/ScalaObject-class | 
| getType | 
| Methods inherited from scala/collection/BitSet-class | 
| booleanElements, memsize, toSet, toString | 
| Field Detail | 
protected val array: Array[Int]
| Method Detail | 
def compareTo[b >: BitSet](view: (b) => Ordered[b])(other: b): Int
final def size: Int
override def equals(that: Any): Boolean
def apply(i: Int): Boolean
i - 
  
  def makeImmutable: BitSet
def makeMutable: BitSet
def toArray: Array[Int]
| 
 | 
          Scala 1.3.0.7 | |||