in scala.collection.immutable
class BitSet

class BitSet
extends BitSet
with ScalaObject
The class BitSetprovides an immutable bitset view on an int array. Instances can conveniently be created from instances of Bit indices are between 0..(capacity-1) inclusive
param:
n represents the number of relevant bits
param:
ba: array of ints of length n>>>5
param:
copy: if yes, then ba is copied and updates will not affect this bitset
author:
Burak Emir, Nikolay Mihaylov
version:
1.0

Constructor Summary
def this ( size : scala.Int , capacity : scala.Int , ba : Array , copy : scala.Boolean )



Constructor Detail
def this ( size : scala.Int , capacity : scala.Int , ba : Array , copy : scala.Boolean )