Is it intentional that JVM and native use `content...
# compiler
j
Is it intentional that JVM and native use
contentHashCode()
and
contentToString()
for the
hashCode
and
toString
of an array within a
data class
, but JS uses regular
hashCode()
and
toString()
resulting in different behavior across platforms?
c
good find. that seems odd/questionable…
j