Package

scodec

bits

Permalink

package bits

Provides immutable data types for working with bits and bytes.

Source
package.scala
See also

BitVector and ByteVector

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. bits
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. implicit final class BinStringSyntax extends AnyVal

    Permalink

    Provides the bin string interpolator, which returns BitVector instances from binary strings.

  2. sealed trait BitVector extends BitwiseOperations[BitVector, Long] with Serializable

    Permalink

    Persistent vector of bits, stored as bytes.

    Persistent vector of bits, stored as bytes.

    Bits are numbered left to right, starting at 0.

  3. trait BitwiseOperations[Repr <: BitwiseOperations[Repr, Idx], Idx] extends AnyRef

    Permalink

    Bitwise operations on a value of type Repr.

    Bitwise operations on a value of type Repr.

    Repr

    type that supports that supports bitwise operations

    Idx

    numeric index type

  4. sealed trait ByteOrdering extends AnyRef

    Permalink

    Enumeration of byte ordering.

  5. sealed trait ByteVector extends BitwiseOperations[ByteVector, Int] with Serializable

    Permalink

    An immutable vector of bytes, backed by a balanced binary tree of chunks.

    An immutable vector of bytes, backed by a balanced binary tree of chunks. Most operations are logarithmic in the depth of this tree, including ++, :+, +:, update, and insert. Where possible, operations return lazy views rather than copying any underlying bytes. Use copy to copy all underlying bytes to a fresh, array-backed ByteVector.

    Unless otherwise noted, operations follow the same naming as the scala standard library collections, though this class does not extend any of the standard scala collections. Use toIndexedSeq, toSeq, or toIterable to obtain a regular scala.collection type.

  6. implicit final class HexStringSyntax extends AnyVal

    Permalink

    Provides the hex string interpolator, which returns ByteVector instances from hexadecimal strings.

Value Members

  1. object Bases

    Permalink

    Provides types related to base conversion -- e.g., binary, hexadecimal, and base 64.

  2. object BitVector extends Serializable

    Permalink

    Companion for BitVector.

  3. object BuildInfo extends Product with Serializable

    Permalink

    This object was generated by sbt-buildinfo.

  4. object ByteOrdering

    Permalink

    Companion for ByteOrdering.

  5. object ByteVector extends Serializable

    Permalink

    Companion for ByteVector.

  6. object LiteralSyntaxMacros

    Permalink

    Macros that support binary and hexadecimal literals.

  7. object crc

    Permalink

    Provides support for calculating cyclic redundancy checks.

    Provides support for calculating cyclic redundancy checks.

    See also

    http://www.repairfaq.org/filipg/LINK/F_crc_v3.html

Inherited from AnyRef

Inherited from Any

Ungrouped