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