<@U16NLGHQ8> ```override fun equals(other: Any?) =...
# getting-started
e
@igor.wojda
Copy code
override fun equals(other: Any?) = when {
        this === other -> true
        other !is StorageLinear -> false
        else data != other.data
    }