summary refs log tree commit diff
path: root/src/libstd/num.rs
AgeCommit message (Collapse)AuthorLines
2017-06-08Auto merge of #40706 - irfanhudda:doc-next-power-of-two, r=alexcrichtonbors-1/+4
Improve documentation of next_power_of_two Clarify overflow behavior of `next_power_of_two`. Related Issue: #18604
2017-05-31Simplify helper functionsIrfan Hudda-1/+4
Based on @scottmcm 's suggestion
2017-04-20Remove num::{Zero,One}Josh Stone-3/+0
[unstable, deprecated since 1.11.0]
2017-01-19travis: Get an emscripten builder onlineAlex Crichton-0/+1
This commit adds a new entry to the Travis matrix which will execute emscripten test suites. Along the way it updates a few bits of the test suite to continue passing on emscripten, such as: * Ignoring i128/u128 tests as they're presumably just not working (didn't investigate as to why) * Disabling a few process tests (not working on emscripten) * Ignore some num tests in libstd (#39119) * Fix some warnings when compiling
2016-11-01std: Flatten the num directory to reflect the module layoutBrian Anderson-0/+293
This makes it dissimilar to how core is structured on disk, but more predictable on its own.