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-09-19 15:59:44 -05:00
|
|
|
// xfail-fast
|
2012-09-18 17:52:21 -05:00
|
|
|
#[legacy_modes];
|
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
trait vec_monad<A> {
|
2012-09-07 16:52:28 -05:00
|
|
|
fn bind<B: Copy>(f: fn(A) -> ~[B]) -> ~[B];
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<A> vec_monad<A> for ~[A] {
|
2012-09-07 16:52:28 -05:00
|
|
|
fn bind<B: Copy>(f: fn(A) -> ~[B]) -> ~[B] {
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut r = ~[];
|
2012-09-19 18:55:01 -05:00
|
|
|
for self.each |elt| { r += f(*elt); }
|
2012-01-31 06:37:06 -06:00
|
|
|
r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
trait option_monad<A> {
|
2012-08-20 14:23:37 -05:00
|
|
|
fn bind<B>(f: fn(A) -> Option<B>) -> Option<B>;
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<A> option_monad<A> for Option<A> {
|
2012-08-20 14:23:37 -05:00
|
|
|
fn bind<B>(f: fn(A) -> Option<B>) -> Option<B> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match self {
|
2012-12-07 23:56:46 -06:00
|
|
|
Some(ref a) => { f(*a) }
|
2012-08-20 14:23:37 -05:00
|
|
|
None => { None }
|
2012-01-31 06:37:06 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-20 14:23:37 -05:00
|
|
|
fn transform(x: Option<int>) -> Option<~str> {
|
|
|
|
x.bind(|n| Some(n + 1) ).bind(|n| Some(int::str(n)) )
|
2012-01-31 06:37:06 -06:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-08-20 14:23:37 -05:00
|
|
|
assert transform(Some(10)) == Some(~"11");
|
|
|
|
assert transform(None) == None;
|
2013-01-10 08:29:26 -06:00
|
|
|
assert (~[~"hi"])
|
|
|
|
.bind(|x| ~[copy x, x + ~"!"] )
|
|
|
|
.bind(|x| ~[copy x, x + ~"?"] ) ==
|
2012-07-14 00:57:48 -05:00
|
|
|
~[~"hi", ~"hi?", ~"hi!", ~"hi!?"];
|
2012-01-31 06:37:06 -06:00
|
|
|
}
|