Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upVendor deprecated/unstable traits from std::num #75
Conversation
rust-highfive
assigned
alexcrichton
Apr 3, 2015
aturon
force-pushed the
aturon:master
branch
from
230cbbe
to
03db5c9
Apr 3, 2015
This comment has been minimized.
This comment has been minimized.
|
Nice! |
alexcrichton
added a commit
that referenced
this pull request
Apr 3, 2015
alexcrichton
merged commit 1579bf6
into
rust-num:master
Apr 3, 2015
1 check passed
continuous-integration/travis-ci/pr
The Travis CI build passed
Details
remexre
pushed a commit
to remexre/num
that referenced
this pull request
Jun 1, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
aturon commentedApr 3, 2015
This commit brings in a load of unstable and/or deprecated traits from
the
std::nummodule. These traits provide for some degree of genericprogramming over numeric types. They are not stable in
stdmostlybecause we want more time to iterate on their design. Moving them to the
numcrate allows existing code to keep using this functionality as wedo so.
r? @alexcrichton
Closes #74