1
Fork 0

impl RangeArgument for RangeInclusive and add appropriate tests

This commit is contained in:
Djzin 2017-02-18 18:57:18 +00:00
parent 3c97cbe4c2
commit 328818934b
4 changed files with 90 additions and 1 deletions

View file

@ -14,7 +14,7 @@
//! Range syntax. //! Range syntax.
use core::ops::{RangeFull, Range, RangeTo, RangeFrom}; use core::ops::{RangeFull, Range, RangeTo, RangeFrom, RangeInclusive};
use Bound::{self, Excluded, Included, Unbounded}; use Bound::{self, Excluded, Included, Unbounded};
/// **RangeArgument** is implemented by Rust's built-in range types, produced /// **RangeArgument** is implemented by Rust's built-in range types, produced
@ -105,6 +105,22 @@ impl<T> RangeArgument<T> for Range<T> {
} }
} }
#[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")]
impl<T> RangeArgument<T> for RangeInclusive<T> {
fn start(&self) -> Bound<&T> {
match *self {
RangeInclusive::Empty{ ref at } => Included(at),
RangeInclusive::NonEmpty { ref start, .. } => Included(start),
}
}
fn end(&self) -> Bound<&T> {
match *self {
RangeInclusive::Empty{ ref at } => Excluded(at),
RangeInclusive::NonEmpty { ref end, .. } => Included(end),
}
}
}
impl<T> RangeArgument<T> for (Bound<T>, Bound<T>) { impl<T> RangeArgument<T> for (Bound<T>, Bound<T>) {
fn start(&self) -> Bound<&T> { fn start(&self) -> Bound<&T> {
match *self { match *self {

View file

@ -178,6 +178,33 @@ fn test_range_small() {
assert_eq!(j, size - 2); assert_eq!(j, size - 2);
} }
#[test]
fn test_range_inclusive() {
let size = 500;
let map: BTreeMap<_, _> = (0...size).map(|i| (i, i)).collect();
fn check<'a, L, R>(lhs: L, rhs: R)
where L: IntoIterator<Item=(&'a i32, &'a i32)>,
R: IntoIterator<Item=(&'a i32, &'a i32)>,
{
let lhs: Vec<_> = lhs.into_iter().collect();
let rhs: Vec<_> = rhs.into_iter().collect();
assert_eq!(lhs, rhs);
}
check(map.range(size + 1...size + 1), vec![]);
check(map.range(size...size), vec![(&size, &size)]);
check(map.range(size...size + 1), vec![(&size, &size)]);
check(map.range(0...0), vec![(&0, &0)]);
check(map.range(0...size - 1), map.range(..size));
check(map.range(-1...-1), vec![]);
check(map.range(-1...size), map.range(..));
check(map.range(5...8), vec![(&5, &5), (&6, &6), (&7, &7), (&8, &8)]);
check(map.range(-1...0), vec![(&0, &0)]);
check(map.range(-1...2), vec![(&0, &0), (&1, &1), (&2, &2)]);
}
#[test] #[test]
fn test_range_equal_empty_cases() { fn test_range_equal_empty_cases() {
let map: BTreeMap<_, _> = (0..5).map(|i| (i, i)).collect(); let map: BTreeMap<_, _> = (0..5).map(|i| (i, i)).collect();

View file

@ -14,6 +14,7 @@
#![feature(binary_heap_peek_mut_pop)] #![feature(binary_heap_peek_mut_pop)]
#![feature(box_syntax)] #![feature(box_syntax)]
#![feature(btree_range)] #![feature(btree_range)]
#![feature(inclusive_range_syntax)]
#![feature(collection_placement)] #![feature(collection_placement)]
#![feature(collections)] #![feature(collections)]
#![feature(collections_bound)] #![feature(collections_bound)]

View file

@ -507,6 +507,51 @@ fn test_drain_range() {
assert_eq!(v, &[(), ()]); assert_eq!(v, &[(), ()]);
} }
#[test]
fn test_drain_inclusive_range() {
let mut v = vec!['a', 'b', 'c', 'd', 'e'];
for _ in v.drain(1...3) {
}
assert_eq!(v, &['a', 'e']);
let mut v: Vec<_> = (0...5).map(|x| x.to_string()).collect();
for _ in v.drain(1...5) {
}
assert_eq!(v, &["0".to_string()]);
let mut v: Vec<String> = (0...5).map(|x| x.to_string()).collect();
for _ in v.drain(0...5) {
}
assert_eq!(v, Vec::<String>::new());
let mut v: Vec<_> = (0...5).map(|x| x.to_string()).collect();
for _ in v.drain(0...3) {
}
assert_eq!(v, &["4".to_string(), "5".to_string()]);
}
#[test]
fn test_drain_max_vec_size() {
let mut v = Vec::<()>::with_capacity(usize::max_value());
unsafe { v.set_len(usize::max_value()); }
for _ in v.drain(usize::max_value() - 1..) {
}
assert_eq!(v.len(), usize::max_value() - 1);
let mut v = Vec::<()>::with_capacity(usize::max_value());
unsafe { v.set_len(usize::max_value()); }
for _ in v.drain(usize::max_value() - 1...usize::max_value() - 1) {
}
assert_eq!(v.len(), usize::max_value() - 1);
}
#[test]
#[should_panic]
fn test_drain_inclusive_out_of_bounds() {
let mut v = vec![1, 2, 3, 4, 5];
v.drain(5...5);
}
#[test] #[test]
fn test_into_boxed_slice() { fn test_into_boxed_slice() {
let xs = vec![1, 2, 3]; let xs = vec![1, 2, 3];