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.
|
|
|
|
|
2012-07-12 00:00:40 +02:00
|
|
|
trait vec_monad<A> {
|
2015-01-03 16:45:00 +01:00
|
|
|
fn bind<B, F>(&self, f: F) where F: FnMut(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> {
|
2015-01-03 16:45:00 +01:00
|
|
|
fn bind<B, F>(&self, mut f: F) where F: FnMut(A) -> Vec<B> {
|
2014-10-09 21:17:22 +02:00
|
|
|
let mut r = panic!();
|
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
|
2012-04-08 02:11:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
2015-01-03 16:45:00 +01:00
|
|
|
["hi"].bind(|&mut: x| [x] );
|
2014-12-20 03:20:51 +01:00
|
|
|
//~^ ERROR type `[&str; 1]` does not implement any method in scope named `bind`
|
2012-07-12 00:00:40 +02:00
|
|
|
}
|