2012-07-11 17:00:40 -05:00
|
|
|
trait vec_monad<A> {
|
|
|
|
fn bind<B>(f: fn(A) -> ~[B]) -> ~[B];
|
|
|
|
}
|
|
|
|
|
2012-08-07 20:10:06 -05:00
|
|
|
impl<A> ~[A]: vec_monad<A> {
|
2012-06-29 18:26:56 -05:00
|
|
|
fn bind<B>(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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-11 17:00:40 -05:00
|
|
|
trait option_monad<A> {
|
|
|
|
fn bind<B>(f: fn(A) -> option<B>) -> option<B>;
|
|
|
|
}
|
|
|
|
|
2012-08-07 20:10:06 -05:00
|
|
|
impl<A> option<A>: option_monad<A> {
|
2012-01-31 06:37:06 -06:00
|
|
|
fn bind<B>(f: fn(A) -> option<B>) -> option<B> {
|
2012-08-06 14:34:08 -05:00
|
|
|
match self {
|
2012-08-03 21:59:04 -05:00
|
|
|
some(a) => { f(a) }
|
|
|
|
none => { none }
|
2012-01-31 06:37:06 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn transform(x: option<int>) -> option<~str> {
|
2012-06-30 18:19:07 -05:00
|
|
|
x.bind(|n| some(n + 1) ).bind(|n| some(int::str(n)) )
|
2012-01-31 06:37:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-07-14 00:57:48 -05:00
|
|
|
assert transform(some(10)) == some(~"11");
|
2012-01-31 06:37:06 -06:00
|
|
|
assert transform(none) == none;
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (~[~"hi"]).bind(|x| ~[x, x + ~"!"] ).bind(|x| ~[x, x + ~"?"] ) ==
|
|
|
|
~[~"hi", ~"hi?", ~"hi!", ~"hi!?"];
|
2012-01-31 06:37:06 -06:00
|
|
|
}
|