2012-06-26 03:00:46 +00:00
|
|
|
impl monad<A> for [A]/~ {
|
|
|
|
fn bind<B>(f: fn(A) -> [B]/~) -> [B]/~ {
|
|
|
|
let mut r = []/~;
|
2012-04-06 18:01:43 +00:00
|
|
|
for self.each {|elt| r += f(elt); }
|
2012-01-31 12:37:06 +00:00
|
|
|
r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-09 13:09:58 +00:00
|
|
|
impl monad<A> for option<A> {
|
2012-01-31 12:37:06 +00:00
|
|
|
fn bind<B>(f: fn(A) -> option<B>) -> option<B> {
|
|
|
|
alt self {
|
|
|
|
some(a) { f(a) }
|
|
|
|
none { none }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn transform(x: option<int>) -> option<str> {
|
|
|
|
x.bind {|n| some(n + 1)}.bind {|n| some(int::str(n))}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert transform(some(10)) == some("11");
|
|
|
|
assert transform(none) == none;
|
2012-06-29 00:31:05 +00:00
|
|
|
assert ["hi"]/~.bind {|x| [x, x + "!"]/~}.bind {|x| [x, x + "?"]/~} ==
|
|
|
|
["hi", "hi?", "hi!", "hi!?"]/~;
|
2012-01-31 12:37:06 +00:00
|
|
|
}
|