open class DelegatingBytes : AbstractBytes, Bytes
(source)
A class that holds and delegates all operations to its inner bytes field.
This class may be used to create more types that represent bytes, but need a different name for business logic.
open fun copy(): Bytes |
|
open fun get(i: Int): Byte |
|
open fun mutableCopy(): MutableBytes |
|
open fun size(): Int |
|
open fun slice(index: Int, length: Int): Bytes |
open fun equals(other: Any?): Boolean
Compare this value and the provided one for equality. Two Bytes values are equal is they have contain the exact same bytes. |
|
open fun hashCode(): Int |
|
open fun toString(): String |