Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.8-rc-1
-
None
-
None
Description
NOTE: @ToString moved to linked issue
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
- relates to
-
GROOVY-5928 @ToString should allow caching of toString values
- Closed