Created
April 8, 2009 05:23
-
-
Save mattpodwysocki/91651 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#light | |
module SeqMonad = | |
let bindS l f = Seq.concat (Seq.map f l) | |
let returnS l = seq { yield l } | |
type SeqBuilder() = | |
member x.Delay(f) = f() | |
member x.Bind(l, f) = bindS l f | |
member x.Return(l) = returnS l | |
let seqM = new SeqBuilder() | |
let guarded (b:bool) (xs:'a seq) : 'a seq = | |
match b with | |
| true -> xs | |
| false -> Seq.empty | |
let res = | |
seqM { let! x = seq {1..36} | |
let! y = seq {x..36} | |
return guarded (x * y = 36) (seq { yield (x, y) }) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment