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

Add option.map_move and result.map_move #8294

Closed
wants to merge 4 commits into from

Conversation

erickt
Copy link
Contributor

@erickt erickt commented Aug 5, 2013

According to #7887, we've decided to use the syntax of fn map<U>(f: &fn(&T) -> U) -> U, which passes a reference to the closure, and to fn map_move<U>(f: &fn(T) -> U) -> U which moves the value into the closure. This PR adds these .map_move() functions to Option and Result.

In addition, it has these other minor features:

@erickt
Copy link
Contributor Author

erickt commented Aug 5, 2013

Feel free to wait until #8288 builds before reviewing, as this PR will probably have a merge conflict with that PR.

@bblum
Copy link
Contributor

bblum commented Aug 5, 2013

Looks good.

@erickt
Copy link
Contributor Author

erickt commented Aug 7, 2013

@bblum: updated to be rebased onto HEAD! Can you re-review?

bors added a commit that referenced this pull request Aug 7, 2013
According to #7887, we've decided to use the syntax of `fn map<U>(f: &fn(&T) -> U) -> U`, which passes a reference to the closure, and to `fn map_move<U>(f: &fn(T) -> U) -> U` which moves the value into the closure. This PR adds these `.map_move()` functions to `Option` and `Result`.

In addition, it has these other minor features:
 
* Replaces a couple uses of `option.get()`, `result.get()`, and `result.get_err()` with `option.unwrap()`, `result.unwrap()`, and `result.unwrap_err()`. (See #8268 and #8288 for a more thorough adaptation of this functionality.
* Removes `option.take_map()` and `option.take_map_default()`. These two functions can be easily written as `.take().map_move(...)`.
* Adds a better error message to `result.unwrap()` and `result.unwrap_err()`.
@bors bors closed this Aug 7, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants