Defines an F# computation builder for encoding imperative computations. The 'return' construct returns immediately and terminates the rest of the computation. It is also possible to return value from a 'for' or 'while' loop.
11 people like thisPosted: 13 years ago by Tomas Petricek
A simple implementation of a very basic command pattern that is being submitted to an Android app called GoF Design Patterns by Poash - highly recommended btw. This is imperative/oop in style, hope it helps someone. It is my first submission and I'm an F Sharp newbie!
1 people like thisPosted: 11 years ago by Richard Griffiths - SoulFireMage
Imperative-style examples used during my talk for the Seattle F# Meetup on 7/17/2013. See corresponding functional-style examples at http://fssnip.net/iP
1 people like thisPosted: 11 years ago by Lincoln Atkinson
It's fairly straightforward in-place QuickSort implementation which uses ThreadPool for parallelization. Still slower than library function Array.sortInPlace, though.
3 people like thisPosted: 12 years ago by Lakret
A combinator that enables real imperative code in F#. Use with caution!
5 people like thisPosted: 11 years ago by Eirik Tsarpalis
Imperative and simple version for Collatz Conjecture or 3n + 1 Problem
1 people like thisPosted: 8 years ago by Fabio Galuppo