Computation expressions in F# is a technique for writing computations that can be combined using control flow constructs and bindings.

learn more… | top users | synonyms

2
votes
1answer
120 views

Composing async computations in F#

I'm writing an asynchronous HTTP API client module/library. To make everything as DRY as possible, I'm trying to compose every HTTP API call from separate parts that make an API call, bottom-up: ...
10
votes
2answers
236 views

Extended computation expressions without for..in..do

What I mean by extended computation expressions is computation expressions with custom keywords defined via CustomOperation attribute. When reading about extended computation expressions, I come ...
7
votes
1answer
282 views

How do you compose query expressions in F#?

I've been looking at query expressions here http://msdn.microsoft.com/en-us/library/vstudio/hh225374.aspx And I've been wondering why the following is legitimate let testQuery = query { for ...
1
vote
1answer
92 views

What is the purpose of the Zero member when defining F# computation expressions?

I am trying to learn F# computation expressions. In general, what is the purpose of the Zero member? What is its definition for sequences? What is its definition for async workflows?
2
votes
3answers
180 views

F# computation expression for nested Boolean tests?

I think I've got enough understanding of F# monads (workflows) that I see a few places in my code where implementing them makes sense. For example, I've got a function with multiple nested if/thens, ...
4
votes
1answer
210 views

Combine F# async and maybe computation expression

Say i want to return an Option while in an async workflow: let run = async { let! x = doAsyncThing let! y = doNextAsyncThing x match y with | None -> return ...
10
votes
2answers
227 views

Why do F# computation expressions require a builder object (rather than a class)?

F# computation expressions have the syntax: ident { cexpr } Where ident is the builder object (this syntax is taken from Don Syme's 2007 blog entry). In all the examples I've seen, builder objects ...
2
votes
1answer
246 views

F# Computation Expressions: How to use `for` to return a `seq`?

I'm writing a computation expression that is essentially implementing a State monad and I'm trying to use for expression. I can use the boilerplate function forLoop or even MBuilder.For(), and they ...
4
votes
2answers
233 views

StackOverflow in continuation monad

Using the following continuation monad: type ContinuationMonad() = member this.Bind (m, f) = fun c -> m (fun a -> f a c) member this.Return x = fun k -> k x let cont = ...
2
votes
1answer
253 views

F# workflow builder for Rx

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 ...
3
votes
1answer
163 views

Computational Expression using Zero

When using a computational expression, the first definition works but the second does not for Zero. What is the difference between this: member o.Zero() = 3 and this: member o.Zero = fun() -> ...
12
votes
1answer
710 views

Defining new keywords in F#'s computation expression

The F# 3.0 beta contains a query {} computation expression with tons of new keywords. How can I define my own keywords in a computation builder?
1
vote
2answers
156 views

fsharp / dotnet and temporal database

I am looking for a way to integrate as directly as possible a temporal awareness into my classes. I deal with data that change with time quite a lot, like share prices, so this would probably need ...
5
votes
2answers
391 views

How to implement delay in the maybe computation builder?

Here is what I have so far: type Maybe<'a> = option<'a> let succeed x = Some(x) let fail = None let bind rest p = match p with | None -> fail | Some r -> rest ...
0
votes
1answer
171 views

How can I go about building a recursive computation expression builder

What I would like to do is have a function that I can repeatedly pass a transformation function into and receive a combined transformation, the transformation function would be of the form 'a -> 'b ...
10
votes
5answers
771 views

How do I change the Rx Builder implementation to fix the stack overflow exception?

I'm trying to come up with an Rx Builder to use Reactive Extension within the F# Computation Expression syntax. How do I fix it so that it doesnt blow the stack? Like the Seq example below. And is ...
1
vote
1answer
110 views

how do i fix these errors generated by my computational expression that is using my custom workflow builder?

From the MSDN documentation I understand that if Run is implemented it will be called automatically at the end of the computational expression. It says that: builder.Run(builder.Delay(fun () -> {| ...
2
votes
3answers
289 views

Retry Computation expression or other construct in F#

I want to be able to write a computation expression in F# that will be able to retry an operation if it throws an exception. Right now my code looks like: let x = retry (fun() -> GetResourceX()) ...
1
vote
2answers
124 views

is there way to make different implementation of do! and let! in computation expression

I need different behavior for do! and let! in my custom computation expression. I try to achieve this in the following way: type FooBuilder() = class member b.Bind(x:'T, f:unit->'U):'U = ...
6
votes
1answer
326 views

What is the role of `while`-loops in computation expressions in F#?

If you define a While method of the builder-object, you can use while-loops in your computation expressions. The signature of the While method is: member b.While (predicate:unit->bool, ...
2
votes
1answer
132 views

How best to catch missing let!, do!, return and return! in computation expressions in F#

I love computation expressions, but I make simple mistakes like forgetting the return keyword or the ! on expressions like let! and return!, or I simply forget to write the do!. This happens much with ...
3
votes
1answer
184 views

Problem with computational workflow

trying to follow example in the expert f# book, and having an issue with the workflows...the code is as follows: type Attempt<'a> = option<'a> let succeed x = Some (x) let fail ...
10
votes
2answers
508 views

How do I translate this C# code (with generic type constraints) to F#?

F# is giving me some trouble with its type inference rules. I'm writing a simple computation builder but can't get my generic type variable constraints right. The code that I would want looks as ...
5
votes
1answer
232 views

Recursive computation expressions

In a previous question I was told how to rewrite my computation expressions so it uses tail recursion. I rewrote my code but still got a StackOverflowException. To locate the problem I wrote some ...
4
votes
2answers
331 views

Recursive functions in computation expressions

Some background first. I am currently learning some stuff about monadic parser combinators. While I tried to transfer the 'chainl1' function from this paper (p. 16-17), I came up with this solution: ...
11
votes
3answers
620 views

LINQ query expressions that operate on types (monads?) other than IEnumerable<T> — Possible uses?

I'm reading the book Real-world functional programming by Tomas Petricek and Jon Skeet and I'm having a hard time digesting the section on computation expressions1) (aka monads). Through this book, I ...
2
votes
2answers
603 views

How do you create an F# workflow that enables something like single-stepping?

I'd like to create a builder that builds expressions that returns something like a continuation after each step. Something like this: module TwoSteps = let x = stepwise { let! y = "foo" ...
4
votes
2answers
636 views

Custom computation expressions in F#

I've been toying with monads in F# (aka computation expressions) and I wrote this simple Identity monad: type Identity<'a> = | Identity of 'a type IdentityBuilder() = member x.Bind ...
3
votes
2answers
463 views

Why does this F# computation expression give a warning?

This code: type Result = Success of string type Tracer() = member x.Bind(p: Result, rest: (string -> Result)) = match p with | Success s -> rest s let tracer = new Tracer() let t ...
2
votes
3answers
352 views

Computation Expression doesn't execute Let

I'm using F# v 1.9.6.2, and I've defined a very simple computation expression: type MaybeBuilder() = member this.Let(x, f) = printfn "this.Let: %A" x this.Bind(Some x, f) ...