-
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
Enhanced functions for Option #10319
Comments
This is a good example of why issue #10296 is relevant. All the actions used by the methods are invoked exactly once, are not sent to another task, and should allow access to borrowed pointers, moving values, mutating environment variables, etc. That is, basically anything written as: match option {
&None => (),
&Some(ref value) => { ... stuff here ... },
} Should be able to be written as: option.when_some |value| { ... stuff here ... } Well, except for |
I don't really understand how these are different from the existing methods. |
Oops, you are absolutely right. Withdrawn. |
Fixing the code I found this edge case: do option.map |value| { fail!("unexpected value: {} ...", value, ...); } This doesn't compile because the compiler can't decide what the return type of the block is. What is needed here is a function like I worked around the problem by writing: do option.map_default(()) |value| { fail!("unexpected value: {} ...", value, ...); } That's "not very nice", though. |
Ah, this seems like it could be considered a bug. If we used a |
I opened #10352 about this. |
Fix false positives for `extra_unused_type_parameters` Don't lint external macros. Also, if the function body is empty, any type parameters with bounds on them are not linted. Note that only the body needs be empty - this rule still applies if the function takes any arguments. fixes rust-lang#10318 fixes rust-lang#10319 changelog: none <!-- changelog_checked -->
I found that defining the following made my code cleaner and shorter, something along these lins would be welcome in the standard library:
The text was updated successfully, but these errors were encountered: