Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
380 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 ...
10
votes
2answers
409 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 ...
9
votes
4answers
435 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 ...
4
votes
1answer
196 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, ...
4
votes
1answer
180 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
460 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
241 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: ...
3
votes
2answers
307 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
2answers
101 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 ...
2
votes
3answers
178 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()) ...
2
votes
1answer
117 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 ...
2
votes
1answer
140 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 ...
2
votes
2answers
458 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" ...
2
votes
3answers
294 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) ...
1
vote
1answer
89 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 () -> {| ...
1
vote
2answers
91 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 = ...
0
votes
1answer
143 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 ...