Skip to content
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

Rename OnceCell methods to be more consistent with std conventions #78943

Closed
wants to merge 2 commits into from

Conversation

matklad
Copy link
Member

@matklad matklad commented Nov 11, 2020

WDYT?

r? @ghost

@matklad
Copy link
Member Author

matklad commented Nov 11, 2020

r? @KodrAus
cc @m-ou-se
cc #74465

@matklad matklad added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. labels Nov 11, 2020
@m-ou-se
Copy link
Member

m-ou-se commented Nov 11, 2020

For Option we use get_or_init (and get_or_init_with): https://doc.rust-lang.org/stable/std/option/enum.Option.html#method.get_or_insert_with

get_with (without or) sounds like the closure is always run.

@matklad
Copy link
Member Author

matklad commented Nov 11, 2020

Hm, I guess than it makes sense to use

get_or_insert_with
try_get_or_insert_with

for OnceCell?

The benefit is that it exactly matches the Option's method (and has the same semantics).

The drawback is that it is long -- that's OK for Option, as it is one of it's rarely used methods. For OnceCell, however, that's the main API...

@KodrAus
Copy link
Contributor

KodrAus commented Nov 11, 2020

I was just coming to say the same thing 🙂 I don’t personally think get_or_init_with is unreasonably long.

@matklad
Copy link
Member Author

matklad commented Nov 11, 2020

rerenamed!

@m-ou-se
Copy link
Member

m-ou-se commented Nov 11, 2020

So would a future get_or_init take the init value directly, instead of from a closure, just like Option? Or only have an get_or_init_with and no by-value counterpart?

@matklad
Copy link
Member Author

matklad commented Nov 11, 2020

Yup, I think we can have get_or_insert(&self, value: T) -> &T, as a reference-returning counterpart of set. We might bikeshed the return type (ideally, it is Result<&T, (&T, T)>)

@matklad
Copy link
Member Author

matklad commented Nov 11, 2020

CI fails because, apparently, one does not simply deprecate unstable std API. I'll remove the commit than...

@m-ou-se
Copy link
Member

m-ou-se commented Nov 11, 2020

I think #[rustc_deprecated] (instead of #[deprecated]) would work on an unstable api.

No need to make life of folks using nightly harder! We'll remove
deprecated functions later, once everyone has a chance to migrate.
@KodrAus
Copy link
Contributor

KodrAus commented Nov 11, 2020

A by-value get-or-init API doesn’t seem very useful for these, have you ever come across use-cases that would want one? I think the _with suffix is a good change though!

I also didn’t think we needed to be consistent with Option and collections’ insert vs the once cells’ init, because in the context of once cells we are initializing the container. We have better terminology than insert to reach for which also has the nice benefit of being a little shorter.

@KodrAus
Copy link
Contributor

KodrAus commented Nov 11, 2020

Actually... Thinking about it you might want something like that if each caller might initialize with a different value. In that case you’re not worried about expensive initialization, but who got in first.

@matklad
Copy link
Member Author

matklad commented Nov 12, 2020

Ok, it seems there's no quick consensus here... Let me register this as an unresolved question in the tracking issue.

@matklad matklad closed this Nov 12, 2020
@matklad matklad mentioned this pull request Nov 12, 2020
9 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants