// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // xfail-fast #[legacy_modes]; trait vec_monad { fn bind(f: fn(A) -> ~[B]) -> ~[B]; } impl vec_monad for ~[A] { fn bind(f: fn(A) -> ~[B]) -> ~[B] { let mut r = ~[]; for self.each |elt| { r += f(*elt); } r } } trait option_monad { fn bind(f: fn(A) -> Option) -> Option; } impl option_monad for Option { fn bind(f: fn(A) -> Option) -> Option { match self { Some(ref a) => { f(*a) } None => { None } } } } fn transform(x: Option) -> Option<~str> { x.bind(|n| Some(n + 1) ).bind(|n| Some(int::str(n)) ) } pub fn main() { assert transform(Some(10)) == Some(~"11"); assert transform(None) == None; assert (~[~"hi"]) .bind(|x| ~[copy x, x + ~"!"] ) .bind(|x| ~[copy x, x + ~"?"] ) == ~[~"hi", ~"hi?", ~"hi!", ~"hi!?"]; }