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

Implement Checked{Add,Sub,Mul,Div} #11

Merged
merged 2 commits into from
Jan 19, 2018
Merged

Implement Checked{Add,Sub,Mul,Div} #11

merged 2 commits into from
Jan 19, 2018

Commits on Dec 29, 2017

  1. Implement Checked{Add,Sub,Mul,Div}

    Peter Simonyi committed Dec 29, 2017
    Configuration menu
    Copy the full SHA
    42aef66 View commit details
    Browse the repository at this point in the history
  2. Replace ? operator to support older Rust versions

    Commit 42aef66 used ? on Option values which is only supported since
    Rust 1.22, so replace it with a macro otry! that's essentially the same
    as std::try! but for Option instead of Result.
    Peter Simonyi committed Dec 29, 2017
    Configuration menu
    Copy the full SHA
    13e1678 View commit details
    Browse the repository at this point in the history