-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rich atoms don't cache suspended fields #8710
Comments
Removing any of the |
Allocating the |
Jaroslav Tulach reports a new STANDUP for yesterday (2024-01-12): Progress: - TCK PR integrated: #8685
Next Day: Integrate Atoms, look towards BigDecimal support |
Jaroslav Tulach reports a new STANDUP for yesterday (2024-01-14): Progress: - Fixing atom NI failures: 6d890de
Next Day: Integrate Atoms, look towards BigDecimal support |
Jaroslav Tulach reports a new STANDUP for yesterday (2024-01-15): Progress: - "Atom PR" is ready: #8712
Next Day: Review Test API, look towards BigDecimal support |
Fixes #8710 by making sure suspended atom fields support works also for "normal" `Atom` instances without any special `Layout`. Moves all _atom related_ classes into single package and hides as much of classes as possible by making them _package private_.
Jaroslav Tulach reports a new STANDUP for yesterday (2024-01-16): Progress: - "Atom PR" integrated: #8712
Next Day: BigDecimal (via Complex number) support |
Suspended atom fields, as implemented by
may not be cached properly, when the amount of atom fields is higher than four. Following program shall cache the value generated by the
java.util.Random
generator, but it doesn't:It is able to print
[712182466, -522235373, False]
.The text was updated successfully, but these errors were encountered: