rust/src/test/run-pass/monad.rs

36 lines
830 B
Rust
Raw Normal View History

trait vec_monad<A> {
fn bind<B: Copy>(f: fn(A) -> ~[B]) -> ~[B];
}
2012-08-07 20:10:06 -05:00
impl<A> ~[A]: vec_monad<A> {
fn bind<B: Copy>(f: fn(A) -> ~[B]) -> ~[B] {
let mut r = ~[];
2012-06-30 18:19:07 -05:00
for self.each |elt| { r += f(elt); }
2012-01-31 06:37:06 -06:00
r
}
}
trait option_monad<A> {
2012-08-20 14:23:37 -05:00
fn bind<B>(f: fn(A) -> Option<B>) -> Option<B>;
}
2012-08-20 14:23:37 -05:00
impl<A> Option<A>: option_monad<A> {
fn bind<B>(f: fn(A) -> Option<B>) -> Option<B> {
2012-08-06 14:34:08 -05:00
match self {
2012-08-20 14:23:37 -05:00
Some(a) => { f(a) }
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
}
fn main() {
2012-08-20 14:23:37 -05:00
assert transform(Some(10)) == Some(~"11");
assert transform(None) == None;
assert (~[~"hi"]).bind(|x| ~[x, x + ~"!"] ).bind(|x| ~[x, x + ~"?"] ) ==
~[~"hi", ~"hi?", ~"hi!", ~"hi!?"];
2012-01-31 06:37:06 -06:00
}