abstract class AbstractBytes : Bytes
(source)
An abstract Bytes
value that provides implementations of #equals(Object)
, #hashCode()
and #toString()
.
<init> |
An abstract AbstractBytes() |
equals |
Compare this value and the provided one for equality. open fun equals(other: Any?): Boolean |
hashCode |
open fun hashCode(): Int |
toString |
open fun toString(): String |
DelegatingBytes |
A class that holds and delegates all operations to its inner bytes field. open class DelegatingBytes : AbstractBytes, Bytes |
DelegatingBytes32 |
A class that holds and delegates all operations to its inner bytes field. open class DelegatingBytes32 : AbstractBytes, Bytes32 |
DelegatingBytes48 |
A class that holds and delegates all operations to its inner bytes field. open class DelegatingBytes48 : AbstractBytes, Bytes48 |