C# Class zxingwp7.qrcode.encoder.BitVector

JAVAPORT: This should be combined with BitArray in the future, although that class is not yet dynamically resizeable. This implementation is reasonable but there is a lot of function calling in loops I'd like to get rid of.
显示文件 Open project: henningms/zxing2.0-wp7 Class Usage Examples

Public Methods

Method Description
BitVector ( ) : System
ToString ( ) : String
appendBit ( int bit ) : void
appendBitVector ( BitVector bits ) : void
appendBits ( int value_Renamed, int numBits ) : void
at ( int index ) : int
size ( ) : int
sizeInBytes ( ) : int
xor ( BitVector other ) : void

Private Methods

Method Description
appendByte ( int value_Renamed ) : void

Method Details

BitVector() public method

public BitVector ( ) : System
return System

ToString() public method

public ToString ( ) : String
return String

appendBit() public method

public appendBit ( int bit ) : void
bit int
return void

appendBitVector() public method

public appendBitVector ( BitVector bits ) : void
bits BitVector
return void

appendBits() public method

public appendBits ( int value_Renamed, int numBits ) : void
value_Renamed int
numBits int
return void

at() public method

public at ( int index ) : int
index int
return int

size() public method

public size ( ) : int
return int

sizeInBytes() public method

public sizeInBytes ( ) : int
return int

xor() public method

public xor ( BitVector other ) : void
other BitVector
return void