Constructs a BitVector from a list of literal bytes.
Constructs a BitVector from a list of literal bytes. Only the least significant
byte is used of each integral value.
Constructs a BitVector from a collection of bytes.
Constructs a BitVector from an Array[Byte].
Constructs a BitVector from an Array[Byte]. The given Array[Byte] is
is copied to ensure the resulting BitVector is immutable.
If this is not desired, use BitVector.view.
Constructs a BitVector from a ByteBuffer.
Constructs a BitVector from a ByteBuffer. The given ByteBuffer is
is copied to ensure the resulting BitVector is immutable.
If this is not desired, use BitVector.view.
Constructs a BitVector from a ByteVector.
Constructs a BitVector from a ByteVector.
This method has runtime O(1).
1-bit vector with only bit set to specified value.
n-bit vector with bit at index i set to value of boolean at index i in specified iterable.
Concatenate vs to produce a single BitVector.
Concatenates all the given BitVectors into a single instance.
Empty bit vector.
Encodes the specified string to a BitVector using the US-ASCII charset.
Encodes the specified string to a BitVector using the implicitly available Charset.
Encodes the specified string to a BitVector using the UTF-8 charset.
Constructs an n-bit BitVector where each bit is set to the specified value.
Constructs a BitVector from a base 58 string or returns None if the string is not valid base 58.
Constructs a BitVector from a base 58 string or returns None if the string is not valid base 58.
Details pertaining to base 58 decoding can be found in the comment for ByteVector.fromBase58Descriptive.
The string may contain whitespace characters which are ignored.
Constructs a BitVector from a base 58 string or returns an error message if the string is not valid base 58.
Constructs a BitVector from a base 58 string or returns an error message if the string is not valid base 58.
Details pertaining to base 58 decoding can be found in the comment for ByteVector.fromBase58Descriptive.
The string may contain whitespace characters which are ignored.
Constructs a BitVector from a base 64 string or returns None if the string is not valid base 64.
Constructs a BitVector from a base 64 string or returns None if the string is not valid base 64.
Details pertaining to base 64 decoding can be found in the comment for ByteVector.fromBase64Descriptive.
The string may contain whitespace characters which are ignored.
Constructs a BitVector from a base 64 string or returns an error message if the string is not valid base 64.
Constructs a BitVector from a base 64 string or returns an error message if the string is not valid base 64.
Details pertaining to base 64 decoding can be found in the comment for ByteVector.fromBase64Descriptive.
The string may contain whitespace characters which are ignored.
Constructs a BitVector from a binary string or returns None if the string is not valid binary.
Constructs a BitVector from a binary string or returns None if the string is not valid binary.
The string may start with a 0b and it may contain whitespace or underscore characters.
Constructs a BitVector from a binary string or returns an error message if the string is not valid binary.
Constructs a BitVector from a binary string or returns an error message if the string is not valid binary.
The string may start with a 0b and it may contain whitespace or underscore characters.
Constructs a bit vector with the 2's complement encoding of the specified byte.
Constructs a bit vector with the 2's complement encoding of the specified byte.
size of vector (<= 8)
Produce a lazy BitVector from the given ReadableByteChannel, using chunkSizeInBytes
to control the number of bytes read in each chunk (defaulting to 16MB).
Produce a lazy BitVector from the given ReadableByteChannel, using chunkSizeInBytes
to control the number of bytes read in each chunk (defaulting to 16MB). This function
does lazy I/O, see scodec.bits.BitVector.fromInputStream for caveats. The direct
parameter, if true, allows for (but does not enforce) using a 'direct' java.nio.ByteBuffer
for each chunk, which means the buffer and corresponding BitVector chunk may be backed by a
'view' rather than an in-memory array. This may be more efficient for some workloads. See
java.nio.ByteBuffer for more information.
the number of bytes to read in each chunk
true if we should attempt to use a 'direct' java.nio.ByteBuffer for reads
Constructs a BitVector from a hexadecimal string or returns None if the string is not valid hexadecimal.
Constructs a BitVector from a hexadecimal string or returns None if the string is not valid hexadecimal.
The string may start with a 0x and it may contain whitespace or underscore characters.
Constructs a BitVector from a hexadecimal string or returns an error message if the string is not valid hexadecimal.
Constructs a BitVector from a hexadecimal string or returns an error message if the string is not valid hexadecimal.
The string may start with a 0x and it may contain whitespace or underscore characters.
Produce a lazy BitVector from the given InputStream, using chunkSizeInBytes
to control the number of bytes read in each chunk (defaulting to 16MB).
Produce a lazy BitVector from the given InputStream, using chunkSizeInBytes
to control the number of bytes read in each chunk (defaulting to 16MB).
This simply calls scodec.bits.BitVector.unfold with a function to extract a series
of flat byte arrays from the InputStream.
This function does not handle closing the InputStream and has all the usual
drawbacks of lazy I/O - I/O exceptions may be raised unexpectedly in pure code as
chunks are forced, and it must memoize the results to prevent the underlying side
effects from being observed. Streaming applications should take care to ensure
that the head of the stream is not left on the stack, as this will cause the entire
stream to be retained in memory.
the number of bytes to read in each chunk
Constructs a bit vector with the 2's complement encoding of the specified value.
Constructs a bit vector with the 2's complement encoding of the specified value.
value to encode
size of vector (<= 32)
byte ordering of vector
Constructs a bit vector with the 2's complement encoding of the specified value.
Constructs a bit vector with the 2's complement encoding of the specified value.
size of vector (<= 64)
byte ordering of vector
Produce a lazy BitVector from the given FileChannel, using chunkSizeInBytes
to control the number of bytes read in each chunk (defaulting to 16MB).
Produce a lazy BitVector from the given FileChannel, using chunkSizeInBytes
to control the number of bytes read in each chunk (defaulting to 16MB). Unlike
scodec.bits.BitVector.fromChannel, this memory-maps chunks in, rather than copying
them explicitly.
Behavior is unspecified if this function is used concurrently with the underlying file being written.
the number of bytes to read in each chunk
Constructs a bit vector with the 2's complement encoding of the specified value.
Constructs a bit vector with the 2's complement encoding of the specified value.
value to encode
size of vector (<= 16)
byte ordering of vector
Constructs a bit vector containing the binary representation of the specified UUID.
Constructs a bit vector containing the binary representation of the specified UUID. The bits are in MSB-to-LSB order.
value to encode
Constructs a BitVector from a base 58 string or throws an IllegalArgumentException if the string is not valid base 58.
Constructs a BitVector from a base 58 string or throws an IllegalArgumentException if the string is not valid base 58.
Details pertaining to base 58 decoding can be found in the comment for ByteVector.fromBase58Descriptive.
The string may contain whitespace characters which are ignored.
IllegalArgumentException if the string is not valid base 58
Constructs a BitVector from a base 64 string or throws an IllegalArgumentException if the string is not valid base 64.
Constructs a BitVector from a base 64 string or throws an IllegalArgumentException if the string is not valid base 64.
Details pertaining to base 64 decoding can be found in the comment for ByteVector.fromBase64Descriptive.
The string may contain whitespace characters which are ignored.
IllegalArgumentException if the string is not valid base 64
Constructs a BitVector from a binary string or throws an IllegalArgumentException if the string is not valid binary.
Constructs a BitVector from a binary string or throws an IllegalArgumentException if the string is not valid binary.
The string may start with a 0b and it may contain whitespace or underscore characters.
IllegalArgumentException if the string is not valid hexadecimal
Constructs a BitVector from a hexadecimal string or throws an IllegalArgumentException if the string is not valid hexadecimal.
Constructs a BitVector from a hexadecimal string or throws an IllegalArgumentException if the string is not valid hexadecimal.
The string may start with a 0x and it may contain whitespace or underscore characters.
IllegalArgumentException if the string is not valid hexadecimal
n-bit vector with all bits set high.
8-bit vector with all bits set high.
n-bit vector with all bits set low.
8-bit vector with all bits set low.
1-bit vector with only bit set high.
Returns the bitwise reversal of the provided byte.
Create a lazy BitVector by repeatedly extracting chunks from S.
Create a lazy BitVector by repeatedly extracting chunks from S.
The returned BitVector will have the structure of a fully lazy
right-associated cons list. Thus, get, take, and drop will
be efficient when operating on the head of the list, but accessing
later indices (for takeRight, say, or get(size-1) will require
forcing the stream up to that point.
Use force if you wish to convert the result to an in-memory strict
BitVector backed by a balanced tree.
Constructs a BitVector from an Array[Byte].
Constructs a BitVector from an Array[Byte]. Unlike apply, this
does not make a copy of the input array, so callers should take care
not to modify the contents of the array passed to this function.
Constructs a BitVector from an Array[Byte].
Constructs a BitVector from an Array[Byte]. Unlike apply, this
does not make a copy of the input array, so callers should take care
not to modify the contents of the array passed to this function.
Constructs a BitVector from the first sizeInBits of the ByteBuffer.
Constructs a BitVector from the first sizeInBits of the ByteBuffer.
Unlike apply, this does not make a copy of the input buffer, so callers should take care
not to modify the contents of the buffer passed to this function.
Constructs a BitVector from a ByteBuffer using the buffer limit * 8 as the size.
Constructs a BitVector from a ByteBuffer using the buffer limit * 8 as the size.
Unlike apply, this does not make a copy of the input buffer, so callers should take care
not to modify the contents of the buffer passed to this function.
1-bit vector with only bit set low.
Companion for BitVector.