hashCode

override fun hashCode(): Int

Returns a hash code value for this serializer.


Calling from Kotlin

Here's an example of calling this method from Kotlin code:

val serializer = ZeroAsByteSerializer()
val other = ZeroAsByteSerializer()
val equality: Boolean = serializer.hashCode() == other.hashCode()
val message = "Hash codes of '$serializer' should be equal."
assertTrue(equality, message)