-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Make TaskBuilder methods return Self again so we can use the builder pattern. #6399
Comments
nominating for backwards compatible |
accepted for backwards-compatible milestone |
Blocked on #5967 |
(Allowing rvalues to be mutably borrowed) |
This is unblocked? |
Looks like it is. |
visited for bug triage, email 2013-08-19. It sounds from the comments like someone should take a shot at doing this, since #5967 is now fixed. I'm looking into it. Niko says it may still not work well; "you'll find you can't chain more than one or two calls..." |
To clarify, this is due to issue #3511, which I hope to address soon. |
(I have abandoned PR #8708; others are free to resurrect it if they like.) |
Is this unblocked by recent progress in #3511 ? |
@lilac I remain unclear as to whether the actual goal here is to implement the multable-builder pattern or the immutable one; see the dialogue on PR #8708 @alexcrichton @metajack can you shed some light on this question? (Not that I dont trust bblum's statements, but I figure I'd rather get a thumbs-up from someone within the current core team.) |
I would guess that this is unblocked, but there's only one way to find out! |
@alexcrichton sorry, by "shed some light on this question", I meant this question:
|
I don't particularly have an opinion one way or another, I wasn't around for the time that this looked like it existed. I'm not sure how commonly this is used and whether we still want to switch. |
Sorry that doesn't really shed any more light than before :( |
New lint `is_digit_ascii_radix` Closes rust-lang#6399 changelog: Added [`is_digit_ascii_radix`]: recommend `is_ascii_digit()` or `is_ascii_hexdigit()` in place of `is_digit(10)` and `is_digit(16)`
Specifically
sched_mode()
now returns()
instead of the builder. This broke servo code using the following pattern:EDIT(bblum): All methods seem to return
()
. They should all return Self except for the spawn methods.The text was updated successfully, but these errors were encountered: