we started to use `data object` in our project, do...
# language-evolution
k
we started to use
data object
in our project, does the generated code also produce a
readResolve
implementation to avoid Java serialisation issues?
the proposal mentions the equal function being generated so comparing two objects is fine as long as
if one respects the value-like nature of data objects and does not compare them using the === reference equality operator
does the
when
respect this rule?
👌 2