2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2012-07-06 15:50:50 -07:00
|
|
|
// Tests that type assignability is used to search for instances when
|
|
|
|
// making method calls, but only if there aren't any matches without
|
|
|
|
// it.
|
|
|
|
|
2012-07-31 10:27:51 -07:00
|
|
|
trait iterable<A> {
|
2013-05-03 16:33:33 -04:00
|
|
|
fn iterate(&self, blk: &fn(x: &A) -> bool) -> bool;
|
2012-07-06 15:50:50 -07:00
|
|
|
}
|
|
|
|
|
2013-03-25 13:21:04 -07:00
|
|
|
impl<'self,A> iterable<A> for &'self [A] {
|
2013-05-03 16:33:33 -04:00
|
|
|
fn iterate(&self, f: &fn(x: &A) -> bool) -> bool {
|
|
|
|
vec::each(*self, f)
|
2012-07-06 15:50:50 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<A> iterable<A> for ~[A] {
|
2013-05-03 16:33:33 -04:00
|
|
|
fn iterate(&self, f: &fn(x: &A) -> bool) -> bool {
|
|
|
|
vec::each(*self, f)
|
2012-07-06 15:50:50 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn length<A, T: iterable<A>>(x: T) -> uint {
|
|
|
|
let mut len = 0;
|
|
|
|
for x.iterate() |_y| { len += 1 }
|
2012-08-01 17:30:05 -07:00
|
|
|
return len;
|
2012-07-06 15:50:50 -07:00
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2012-07-06 15:50:50 -07:00
|
|
|
let x = ~[0,1,2,3];
|
|
|
|
// Call a method
|
2013-03-28 18:39:09 -07:00
|
|
|
for x.iterate() |y| { assert!(x[*y] == *y); }
|
2012-07-06 15:50:50 -07:00
|
|
|
// Call a parameterized function
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(length(x.clone()), x.len());
|
2012-07-06 15:50:50 -07:00
|
|
|
// Call a parameterized function, with type arguments that require
|
|
|
|
// a borrow
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(length::<int, &[int]>(x), x.len());
|
2012-07-06 15:50:50 -07:00
|
|
|
|
|
|
|
// Now try it with a type that *needs* to be borrowed
|
2012-10-10 00:28:04 -04:00
|
|
|
let z = [0,1,2,3];
|
2012-07-06 15:50:50 -07:00
|
|
|
// Call a method
|
2013-03-28 18:39:09 -07:00
|
|
|
for z.iterate() |y| { assert!(z[*y] == *y); }
|
2012-07-06 15:50:50 -07:00
|
|
|
// Call a parameterized function
|
2013-05-18 22:02:45 -04:00
|
|
|
assert_eq!(length::<int, &[int]>(z), z.len());
|
2012-07-06 15:50:50 -07:00
|
|
|
}
|