rust/src/libcollectionstest
Ulrik Sverdrup 343b4c321d collections: Simplify VecDeque::is_empty
Improve is_empty on the VecDeque and its iterators by just comparing
tail and head; this saves a few instructions (to be able to remove the
`& (size - 1)` computation, it would have to know that size is a power of two).
2016-12-04 15:46:36 +01:00
..
btree run rustfmt on libcollectionstest 2016-10-25 21:59:22 +05:30
bench.rs
binary_heap.rs run rustfmt on libcollectionstest 2016-10-25 21:59:22 +05:30
cow_str.rs Fix issues with the Add/AddAssign impls for Cow<str> 2016-11-04 01:07:00 +00:00
enum_set.rs format with [rustfmt_skip] and addressed a few comments 2016-05-24 07:39:55 +05:30
fmt.rs
lib.rs Add String::split_off. 2016-11-30 23:24:57 -05:00
linked_list.rs run rustfmt on libcollections test module 2016-05-22 23:57:13 +05:30
slice.rs core, collections: Implement better .is_empty() for slice and vec iterators 2016-11-23 02:31:41 +01:00
str.rs Auto merge of #37888 - bluss:chars-count, r=alexcrichton 2016-11-20 17:06:53 -06:00
string.rs Add String::split_off. 2016-11-30 23:24:57 -05:00
vec_deque.rs collections: Simplify VecDeque::is_empty 2016-12-04 15:46:36 +01:00
vec.rs Auto merge of #37212 - srinivasreddy:libcollectionstest, r=nrc 2016-10-27 22:02:31 -07:00