Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.8-rc-1
-
None
-
None
Description
For an immutable object, a hashcode value & toString value only need to be computed once and cached. Then the hashcode and toString methods can just return the cached values.
The @ToString and @EqualsAndHashCode ast transformation should have options to allow for caching. For example:
@ToString(cache=true)
@EqualsAndHashCode(cache=true)
Also, the @Immutable annotation should use the @ToString and @EqualsAndHashCode transformation with this caching capability enabled.
Attachments
Issue Links
- is related to
-
GROOVY-4714 @EqualsAndHashCode should allow caching of hashCode values
- Closed