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