about summary refs log tree commit diff
path: root/src/libcollectionstest/bit
AgeCommit message (Collapse)AuthorLines
2015-08-12Remove all unstable deprecated functionalityAlex Crichton-1413/+0
This commit removes all unstable and deprecated functions in the standard library. A release was recently cut (1.3) which makes this a good time for some spring cleaning of the deprecated functions.
2015-06-10Removed many pointless calls to *iter() and iter_mut()Joshua Landau-1/+1
2015-06-08Implement RFC 839Johannes Oertel-0/+38
Closes #25976.
2015-05-10Implement `append` and `split_off` for BitSet (RFC 509)Johannes Oertel-0/+61
2015-05-06Implement append and split_off for BitVec (RFC 509)Johannes Oertel-0/+135
2015-04-14More test fixesAlex Crichton-5/+4
2015-04-14test: Fixup many library unit testsAlex Crichton-4/+3
2015-04-03Auto merge of #23832 - petrochenkov:usize, r=aturonbors-41/+41
These constants are small and can fit even in `u8`, but semantically they have type `usize` because they denote sizes and are almost always used in `usize` context. The change of their type to `u32` during the integer audit led only to the large amount of `as usize` noise (see the second commit, which removes this noise). This is a minor [breaking-change] to an unstable interface. r? @aturon
2015-03-31std: Clean out #[deprecated] APIsAlex Crichton-2/+1
This commit cleans out a large amount of deprecated APIs from the standard library and some of the facade crates as well, updating all users in the compiler and in tests as it goes along.
2015-03-30Remove unnecessary `as usize`Vadim Petrochenkov-41/+41
2015-03-16extract libcollections tests into libcollectionstestJorge Aparicio-0/+1182