about summary refs log tree commit diff
path: root/src/libstd/num
AgeCommit message (Expand)AuthorLines
2015-06-27std: Avoid missing fns on i686-pc-windows-msvcAlex Crichton-21/+74
2015-06-17std: Split the `std_misc` featureAlex Crichton-24/+23
2015-06-01Document behavior of {f32,f64}::{min,max} on NaNMatt Brubeck-0/+8
2015-05-27Remove mentions of int / uint from the isize / usize docsJake Goulding-8/+0
2015-05-12Scale back changes madeAlex Crichton-34/+17
2015-05-12Very hacky MSVC hacks.Ricky Taylor-4/+31
2015-05-01std: Don't use a wrapper for the float error typeAlex Crichton-34/+5
2015-04-21std: Bring back f32::from_str_radix as an unstable APIAlex Crichton-761/+284
2015-04-21std: Remove deprecated/unstable num functionalityAlex Crichton-2480/+10
2015-04-21Model lexer: Fix remaining issuesPiotr Czarnecki-2/+0
2015-04-14rollup merge of #24377: apasel422/docsAlex Crichton-30/+30
2015-04-14test: Fixup many library unit testsAlex Crichton-14/+14
2015-04-13pluralize doc comment verbs and add missing periodsAndrew Paseltiner-30/+30
2015-04-07std: Deny most warnings in doctestsAlex Crichton-24/+2
2015-04-01Fallout in public-facing and semi-public-facing libsNiko Matsakis-3/+3
2015-03-31Stabilize std::numAaron Turon-964/+408
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-68/+68
2015-03-23Add #![feature] attributes to doctestsBrian Anderson-0/+125
2015-03-20std: Remove old_io/old_path from the preludeAlex Crichton-2/+2
2015-03-20Rollup merge of #22631 - aepsil0n:issue-22098, r=aturonManish Goregaokar-9/+9
2015-03-19Allow Float::ldexp to be called as a methodEduard Bopp-9/+9
2015-03-18Register new snapshotsAlex Crichton-23/+0
2015-03-16impl f{32,64}Jorge Aparicio-0/+2469
2015-03-16impl {i,u}{8,16,32,64,size}Jorge Aparicio-0/+3
2015-03-16impl<T> [T]Jorge Aparicio-0/+1
2015-03-16impl strJorge Aparicio-0/+1
2015-03-16impl charJorge Aparicio-0/+3
2015-03-08Auto merge of #22984 - carols10cents:tests-for-float, r=huonwbors-345/+925
2015-03-07Use assert_eq! rather than assert!Ryan Prichard-1/+1
2015-03-05Removing unnecessary pub from a test functionCarol Nichols-2/+2
2015-03-05Add tests to stable f32 and f64 methods that didn't have anyCarol Nichols-0/+580
2015-03-05Rearrange tests to be in the same order as implementationCarol Nichols-345/+345
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-31/+31
2015-03-03Auto merge of #22532 - pnkfelix:arith-overflow, r=pnkfelix,eddybbors-12/+14
2015-03-03Rollup merge of #22876 - Florob:const, r=nikomatsakisManish Goregaokar-2/+2
2015-03-03Accommodate arith-overflow in `core::num`, `std::num`, `coretest::num`.Felix S. Klock II-12/+13
2015-03-03Add `core::num::wrapping` and fix overflow errors.James Miller-0/+1
2015-03-02core: Audit num module for int/uintBrian Anderson-2/+2
2015-03-02Use `const`s instead of `static`s where appropriateFlorian Zeitz-2/+2
2015-03-01Make Int::pow() take exp as u32 instead usizeGuillaume Gomez-1/+1
2015-02-23Rollup merge of #22658 - glacjay:issue-22535, r=GankroManish Goregaokar-62/+66
2015-02-22shift int/uint tests around to avoid code repetitionGlacJAY-62/+66
2015-02-20make int/uint modules just re-exportsAlexis-149/+105
2015-02-18Convert required suffixes into a use of `as`.Niko Matsakis-39/+39
2015-02-18Remove `i`, `is`, `u`, or `us` suffixes that are not necessary.Niko Matsakis-16/+16
2015-02-16Document std::num::Float with examplesmdinger-42/+777
2015-02-15Rollup merge of #22339 - petrochenkov:int, r=huonwManish Goregaokar-21/+21
2015-02-15Fix the falloutVadim Petrochenkov-21/+21
2015-02-13Remove `_VALUE` from the float extremes constants.Huon Wilson-0/+2
2015-02-11Auto merge of #22076 - carols10cents:exp2-calling-exp, r=huonwbors-2/+56