Is there an option (maybe) wokflow (monad) in the standrd F# library?

I've found a dozen of hand-made implementations (1, 2) of this workflow, but I don't really want to introduce non-standard and not very trusted code into my project. And all imaginable queries to google and msdn gave me no clue where to find it.

link|improve this question

60% accept rate
feedback

3 Answers

up vote 3 down vote accepted

There's no Maybe monad in the standard F# library. You may want to look at FSharpx, a F# extension written by highly-qualified members of F# community, which has quite a number of useful monads.

link|improve this answer
feedback

There's no standard computation builder for options, but if you don't need things like laziness (as added in the examples you linked) the code is straightforward enough that there's no reason not to trust it (particularly given the suggestively named Option.bind function from the standard library). Here's a fairly minimal example:

type OptionBuilder() =
    member x.Bind(v,f) = Option.bind f v
    member x.Return v = Some v
    member x.ReturnFrom o = o

let opt = OptionBuilder()
link|improve this answer
feedback

option type is not monad, and it is not standard monad implementation.

link|improve this answer
3  
Actually, the standard F# library includes Option.bind, and return is Some, it already implements a monad. Only the syntactic sugar is missing. – Mauricio Scheffer Oct 19 '11 at 19:32
Well, I certainly have Option.bind. – BLUEPIXY Oct 19 '11 at 21:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.