fun Buffer.fill(times: Int, value: Byte): Unit
Write byte value repeated the specified times.
fun Buffer.fill(times: Int, value: <ERROR CLASS>): Unit
Write unsigned byte value repeated the specified times.
fun Buffer.fill(n: Long, v: Byte): Unit
Deprecated: Use fill with n with type Int
Write byte v value repeated n times.
fun Output.fill(times: Long, value: Byte = 0): Unit