summary refs log tree commit diff
path: root/src/libcollections/enum_set.rs
AgeCommit message (Expand)AuthorLines
2014-12-13libcollections: make `EnumSet` binops by valueJorge Aparicio-0/+36
2014-12-10Remove references to traits that no longer existTobias Bucher-1/+1
2014-12-08librustc: Make `Copy` opt-in.Niko Matsakis-0/+7
2014-12-06libcollections: remove unnecessary `as_slice()` callsJorge Aparicio-3/+3
2014-12-03Fix falloutJorge Aparicio-12/+12
2014-11-25/** -> ///Steve Klabnik-21/+19
2014-11-17Switch to purely namespaced enumsSteven Fackler-1/+2
2014-11-13Remove lots of numeric traits from the preludesBrendan Zabarauskas-0/+1
2014-11-11auto merge of #18753 : jbcrail/rust/fix-deprecated-enum-set, r=alexcrichtonbors-2/+2
2014-11-09auto merge of #18756 : jbcrail/rust/add-enum-set-bitxor, r=alexcrichtonbors-1/+26
2014-11-08auto merge of #18475 : gamazeps/rust/toExtend, r=alexcrichtonbors-0/+16
2014-11-08Implements Extend for EnumSet and LruCachegamazeps-0/+16
2014-11-07Add tests for BitAnd and BitXor.Joseph Crail-0/+20
2014-11-07Add BitXor to EnumSet.Joseph Crail-1/+6
2014-11-07Rename deprecated EnumSet methods in unit tests.Joseph Crail-2/+2
2014-11-07Implement len() for EnumSet.Joseph Crail-1/+20
2014-11-06Add example impl in CLike docs. Fix 13752.Simon Sapin-1/+21
2014-11-06EnumSet assertion: better error message.Simon Sapin-1/+3
2014-11-06Make EnumSet not silently corrupt data.Simon Sapin-1/+30
2014-11-06fix EnumSet::is_subsetAlex Crichton-2/+7
2014-11-06Implement low-hanging fruit of collection conventionsAlexis Beingessner-68/+124
2014-11-02refactor libcollections as part of collection reformAlexis Beingessner-1/+1
2014-11-01collections: Remove all collections traitsAlex Crichton-2/+0
2014-09-27make EnumSet derive Ord and PartialOrdAlexis Beingessner-1/+1
2014-09-13Properly implement Show for EnumSetSteven Fackler-1/+27
2014-08-19A few minor documentation fixesP1start-13/+13
2014-07-23Remove kludgy imports from vec! macroBrian Anderson-0/+2
2014-06-18Merge the Bitwise and ByteOrder traits into the Int traitBrendan Zabarauskas-2/+0
2014-06-05Fallout from the libcollections movementAlex Crichton-1/+1
2014-06-05std: Recreate a `collections` moduleAlex Crichton-1/+3
2014-06-01std: Drop Total from Total{Eq,Ord}Alex Crichton-1/+1
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-2/+2
2014-05-11core: Remove the cast moduleAlex Crichton-2/+2
2014-04-09collections: replace all ~[T] with Vec<T>.Huon Wilson-16/+16
2014-03-31collections: Switch field privacy as necessaryAlex Crichton-3/+3
2014-03-23use TotalEq for HashMapDaniel Micay-1/+1
2014-02-28std: Change assert_eq!() to use {} instead of {:?}Alex Crichton-1/+1
2014-02-24Move extra::json to libserializeAlex Crichton-1/+1
2014-02-23Remove all ToStr impls, add Show implsAlex Crichton-1/+1
2014-02-24Transition to new `Hash`, removing IterBytes and std::to_bytes.Huon Wilson-1/+1
2014-02-20move enum_set to libcollections. #8784HeroesGrave-0/+294