"Data" is such an overloaded and vague term, anyway. Almost all classes have "data", so what the heck is a "data class"? Is it one that only has data (not behavior)? Nope- these can have arbitrary methods.
So, I'm kind of glad they didn't use it. (But, to clarify, I really don't care what color the bike shed is)
I'm more wondering why they didn't go with "struct" or "value class", especially because the latter is exactly what we've been calling "class whose equals() is defined by content rather than identity" for many years.
Because while in the end project valhalla will not call them value classes, it is a sort of an overloaded term.
Structs/value types can be mutable, records are not. They are basically tuples with names. And as far as I know, while records have a sane default equals defined, they are still identity objects in that they are passed by reference.
So, I'm kind of glad they didn't use it. (But, to clarify, I really don't care what color the bike shed is)
I'm more wondering why they didn't go with "struct" or "value class", especially because the latter is exactly what we've been calling "class whose equals() is defined by content rather than identity" for many years.