<@U2H3SABQF> If you use ByteBuffer.equals it may l...
# getting-started
g
@elect If you use ByteBuffer.equals it may look like this
Copy code
override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other !is StorageLinear) return false
        if (data != other.data) return false
        return true
    }
K 1