2014-08-07 03:48:25 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-12-30 18:51:18 +00:00
|
|
|
use core::result::Result::{Ok, Err};
|
2014-08-07 03:48:25 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn binary_search_not_found() {
|
|
|
|
let b = [1i, 2, 4, 6, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&6)) == Ok(3));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 6, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&5)) == Err(3));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 6, 7, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&6)) == Ok(3));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 6, 7, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&5)) == Err(3));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 6, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&8)) == Ok(4));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 6, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&7)) == Err(4));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 6, 7, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&8)) == Ok(5));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 5, 6, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&7)) == Err(5));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 5, 6, 8, 9];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&0)) == Err(0));
|
2014-08-07 03:48:25 +00:00
|
|
|
let b = [1i, 2, 4, 5, 6, 8];
|
2014-12-30 18:51:18 +00:00
|
|
|
assert!(b.binary_search_by(|v| v.cmp(&9)) == Err(6));
|
2014-08-07 03:48:25 +00:00
|
|
|
}
|
2014-11-15 03:44:55 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn iterator_to_slice() {
|
|
|
|
macro_rules! test {
|
|
|
|
($data: expr) => {{
|
|
|
|
let data: &mut [_] = &mut $data;
|
|
|
|
let other_data: &mut [_] = &mut $data;
|
|
|
|
|
|
|
|
{
|
|
|
|
let mut iter = data.iter();
|
2015-01-04 04:43:24 +00:00
|
|
|
assert_eq!(&iter[], &other_data[]);
|
2014-11-15 03:44:55 +00:00
|
|
|
|
|
|
|
iter.next();
|
2015-01-04 04:43:24 +00:00
|
|
|
assert_eq!(&iter[], &other_data[1..]);
|
2014-11-15 03:44:55 +00:00
|
|
|
|
|
|
|
iter.next_back();
|
2015-01-04 04:43:24 +00:00
|
|
|
assert_eq!(&iter[], &other_data[1..2]);
|
2014-11-15 03:44:55 +00:00
|
|
|
|
|
|
|
let s = iter.as_slice();
|
|
|
|
iter.next();
|
2015-01-04 04:43:24 +00:00
|
|
|
assert_eq!(s, &other_data[1..2]);
|
2014-11-15 03:44:55 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
let mut iter = data.iter_mut();
|
2015-01-07 16:58:31 +00:00
|
|
|
assert_eq!(&iter[], &other_data[]);
|
2014-11-15 03:44:55 +00:00
|
|
|
// mutability:
|
2015-01-04 04:43:24 +00:00
|
|
|
assert!(&mut iter[] == other_data);
|
2014-11-15 03:44:55 +00:00
|
|
|
|
|
|
|
iter.next();
|
2015-01-07 16:58:31 +00:00
|
|
|
assert_eq!(&iter[], &other_data[1..]);
|
2015-01-04 04:43:24 +00:00
|
|
|
assert!(&mut iter[] == &mut other_data[1..]);
|
2014-11-15 03:44:55 +00:00
|
|
|
|
|
|
|
iter.next_back();
|
|
|
|
|
2015-01-07 16:58:31 +00:00
|
|
|
assert_eq!(&iter[], &other_data[1..2]);
|
2015-01-04 04:43:24 +00:00
|
|
|
assert!(&mut iter[] == &mut other_data[1..2]);
|
2014-11-15 03:44:55 +00:00
|
|
|
|
|
|
|
let s = iter.into_slice();
|
2015-01-04 04:43:24 +00:00
|
|
|
assert!(s == &mut other_data[1..2]);
|
2014-11-15 03:44:55 +00:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
// try types of a variety of sizes
|
|
|
|
test!([(1u64, 1u64, 1u8), (2, 2, 2), (3, 3, 3)]);
|
|
|
|
test!([1u64,2,3]);
|
|
|
|
test!([1u8,2,3]);
|
|
|
|
test!([(),(),()]);
|
|
|
|
}
|