in scala.collection.mutable
class BitSet

class BitSet
extends BitSet
with Set
with ScalaObject
This class implements mutable, resizable Bit sets
author:
Burak Emir, Nikolay Mihaylov
version:
1.1
param:
initSize: initial size in bits

Constructor Summary
def this
default constructor, initial size of 512 bits
def this ( initSize : scala.Int )



Def Summary
def += ( i : scala.Int ) : scala.Unit
Sets ith bit to true. No restriction on i
def -= ( i : scala.Int ) : scala.Unit
Clears ith bit
def clear : scala.Unit

override def clone : BitSet

def ensureCapacity ( n : scala.Int ) : scala.Unit
ensure that this bitset can store at least
n
bits

def toImmutable : BitSet



Constructor Detail
def this
default constructor, initial size of 512 bits

def this ( initSize : scala.Int )

Def Detail
def += ( i : scala.Int ) : scala.Unit
Sets ith bit to true. No restriction on i

def -= ( i : scala.Int ) : scala.Unit
Clears ith bit

def clear : scala.Unit

override def clone : BitSet

def ensureCapacity ( n : scala.Int ) : scala.Unit
ensure that this bitset can store at least
n
bits

def toImmutable : BitSet