just curious, why the autogenerated equals does ``...
# announcements
i
just curious, why the autogenerated equals does
Copy code
if (field != other.field) return false
if (field2 != other.field2) return false
return true
instead of
Copy code
return field == other.field && field2 == other.field2
?