object BufByteWriter

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BufByteWriter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(bytes: Array[Byte]): BufByteWriter

    Creates a fixed sized BufByteWriter that writes to bytes

  2. def dynamic(estimatedSize: Int = 256): BufByteWriter

    Creates a BufByteWriter that grows as needed.

    Creates a BufByteWriter that grows as needed. The maximum size is Int.MaxValue - 2 (maximum array size).

    estimatedSize

    the starting size of the backing buffer, in bytes. If no size is given, 256 bytes will be used.

  3. def fixed(size: Int): BufByteWriter

    Creates a fixed size BufByteWriter.