MutableBitSetDecorator

scala.collection.decorators.MutableBitSetDecorator
class MutableBitSetDecorator(val bs: BitSet)

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def <<=(shiftBy: Int): BitSet

Updates this BitSet to the left shift of itself by the given shift distance. The shift distance may be negative, in which case this method performs a right shift.

Updates this BitSet to the left shift of itself by the given shift distance. The shift distance may be negative, in which case this method performs a right shift.

Attributes

shiftBy

shift distance, in bits

Returns:

the BitSet itself

def >>=(shiftBy: Int): BitSet

Updates this BitSet to the right shift of itself by the given shift distance. The shift distance may be negative, in which case this method performs a left shift.

Updates this BitSet to the right shift of itself by the given shift distance. The shift distance may be negative, in which case this method performs a left shift.

Attributes

shiftBy

shift distance, in bits

Returns:

the BitSet itself

final protected def ensureCapacity(idx: Int): Unit

Concrete fields

protected val bs: BitSet