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-11 15:00:40 -07:00
|
|
|
trait vec_monad<A> {
|
2013-03-12 19:32:14 -07:00
|
|
|
fn bind<B>(&self, f: &fn(A) -> ~[B]);
|
2012-07-11 15:00:40 -07:00
|
|
|
}
|
|
|
|
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<A> vec_monad<A> for ~[A] {
|
2013-03-12 19:32:14 -07:00
|
|
|
fn bind<B>(&self, f: &fn(A) -> ~[B]) {
|
2013-09-29 20:06:21 -07:00
|
|
|
let mut r = fail2!();
|
2013-08-03 12:45:23 -04:00
|
|
|
for elt in self.iter() { r = r + f(*elt); }
|
2013-09-29 14:46:23 -07:00
|
|
|
//~^ ERROR the type of this value must be known
|
2012-04-07 17:11:33 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
2013-01-15 16:33:20 -08:00
|
|
|
["hi"].bind(|x| [x] );
|
2013-04-06 13:19:28 +11:00
|
|
|
//~^ ERROR type `[&'static str, .. 1]` does not implement any method in scope named `bind`
|
2012-07-11 15:00:40 -07:00
|
|
|
}
|