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> {
|
2012-09-18 21:41:37 -07:00
|
|
|
fn iterate(blk: fn(x: &A) -> bool);
|
2012-07-06 15:50:50 -07:00
|
|
|
}
|
|
|
|
|
2013-02-26 14:34:00 -05:00
|
|
|
impl<A> iterable<A> for &self/[A] {
|
2012-09-18 21:41:37 -07:00
|
|
|
fn iterate(f: fn(x: &A) -> bool) {
|
|
|
|
for vec::each(self) |e| {
|
|
|
|
if !f(e) { break; }
|
|
|
|
}
|
2012-07-06 15:50:50 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<A> iterable<A> for ~[A] {
|
2012-09-18 21:41:37 -07:00
|
|
|
fn iterate(f: fn(x: &A) -> bool) {
|
|
|
|
for vec::each(self) |e| {
|
|
|
|
if !f(e) { break; }
|
|
|
|
}
|
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
|
2012-09-18 21:41:37 -07:00
|
|
|
for x.iterate() |y| { assert x[*y] == *y; }
|
2012-07-06 15:50:50 -07:00
|
|
|
// Call a parameterized function
|
2013-01-10 10:59:58 -08:00
|
|
|
assert length(copy x) == vec::len(x);
|
2012-07-06 15:50:50 -07:00
|
|
|
// Call a parameterized function, with type arguments that require
|
|
|
|
// a borrow
|
|
|
|
assert length::<int, &[int]>(x) == vec::len(x);
|
|
|
|
|
|
|
|
// 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
|
2012-09-18 21:41:37 -07:00
|
|
|
for z.iterate() |y| { assert z[*y] == *y; }
|
2012-07-06 15:50:50 -07:00
|
|
|
// Call a parameterized function
|
|
|
|
assert length::<int, &[int]>(z) == vec::len(z);
|
|
|
|
}
|