There's a nice F# workflow builder for Rx here:
http://blogs.msdn.com/b/dsyme/archive/2011/05/30/nice-f-syntax-for-rx-reactive-extensions.aspx
I've been trying to make a Using implementation for the workflow but keep banging my head against the wall. Maybe it's too late here.
How would one create this?
type RxBuilder () =
// ...
member this.Using (disposable, f) =
Observable.Using(???)
Thanks in advance.