[External] : Re: Draft JEP Announcement: "Computed Constants"

David Alayachew davidalayachew at gmail.com
Mon Jul 31 10:46:44 UTC 2023


It does help, thank you very much. I will have to play around with it to
make sure I do, but I think I see what you mean now.

On Mon, Jul 31, 2023 at 5:42 AM Per-Ake Minborg <per-ake.minborg at oracle.com>
wrote:

> Sorry for being unclear.
>
> So, the API guarantees evaluation is made at most once, so it is an error
> to recursively invoke a value provider (which value would we then bind?).
> Consequently, there are no plans to allow circular evaluation.
>
> However, you can check if another ComputedConstant isBound() from a
> provider for another ComputedConstant. It is also allowed to get() the
> bound value from other ComputedConstants as long as they do not query the
> querying ComputedConstant instance. For example, you might want to have a
> List<ComputedConstant<Integer>> that caches the Fibonacci series and when
> computing fib(n), you invoke fib(n-1) and fib(n-2) as the latter do not
> invoke fib(n).
>
> I hope that clears things up.
>
> Best, Per
> ------------------------------
> *From:* David Alayachew <davidalayachew at gmail.com>
> *Sent:* Monday, July 31, 2023 10:30 AM
> *To:* Per-Ake Minborg <per-ake.minborg at oracle.com>
> *Cc:* leyden-dev at openjdk.org <leyden-dev at openjdk.org>
> *Subject:* Re: [External] : Re: Draft JEP Announcement: "Computed
> Constants"
>
> Hello Per,
>
> Thank you for the response!
>
> I'm afraid I don't follow. Could you demonstrate what you mean?
>
> Thank you for your time and help!
> David Alayachew
>
> On Mon, Jul 31, 2023 at 3:05 AM Per-Ake Minborg <
> per-ake.minborg at oracle.com> wrote:
>
> Hi David.
>
> Thanks for the encouragement.
>
> You can actually *reference* CC objects in a circular way as long as you
> do not create circularity in the *evaluation* of CC objects. So, it is, for
> example, perfectly legal to query if a CC is bound via the isBound() method
> in a circular way.
>
> Just to remind you, initialization can only be made at most once per CC
> instance/element.
>
> Best, Per
> ------------------------------
> *From:* David Alayachew <davidalayachew at gmail.com>
> *Sent:* Thursday, July 27, 2023 7:27 PM
> *To:* Per-Ake Minborg <per-ake.minborg at oracle.com>
> *Cc:* leyden-dev at openjdk.org <leyden-dev at openjdk.org>
> *Subject:* [External] : Re: Draft JEP Announcement: "Computed Constants"
>
> Hello Per,
>
> Thank you for posting this JEP!
>
> It looks great. The solution is concise, clear, and simple, and any
> complaints I have about verbosity can be mostly addressed with var. And
> that list suggestion was especially nice. That's very neat.
>
> I'd like to ask about the safety point. I certainly understand the reason
> why it exists -- some developers will inadvertently create a circular
> reference and end up causing problems.
>
> However, I see a lot of utility for circular references too. Any chance
> that we could allow devs to opt-in to circular references?
>
> Earlier this month, I started 2 threads that were broaching the subject of
> a very similar pain point to this one. Here they both are.
>
> https://mail.openjdk.org/pipermail/amber-dev/2023-July/008129.html
>
> https://mail.openjdk.org/pipermail/amber-dev/2023-July/008154.html
>
> I'm curious how this Computed Constant solution would work out for the
> problem I have. But in order for it to work, it would need to enable
> circular references, hence my question.
>
> But even without it, I see a lot of utility for this tool. I'm excited to
> get to work prototyping with it.
>
> Thank you for your time and help!
> David Alayachew
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/leyden-dev/attachments/20230731/b455c4b9/attachment.htm>


More information about the leyden-dev mailing list