vote up 2 vote down star
1

The Edison API and Core modules are the Haskell implementation of Purely Functional Data Structures

Do the F# and native .Net data structures cover use cases in the Edison API and Core sufficiently?

Would there be any benefit to trying to port the API and CORE Haskell modules to F#?

flag

75% accept rate
5  
You may want to go into more detail as to the benefits of these data structures, as reading through a 168 page paper is not something many will want to do to answer. What are the benefits of these data structures in Haskell and what data structures are not in F# that may be beneficial to add? – James Black Oct 21 at 18:45
For what its worth, I made an attempt to translate some of Okasaki's data structures to F# (en.wikibooks.org/wiki/F_Sharp_Programming/…). The interesting ones are the heap and red-black tree implementations. Its a wiki, so if you see something wrong or just weird, feel free to fix it :) – Juliet Oct 23 at 16:13

2 Answers

vote up 4 vote down check

I haven't read the paper on edison, but if it's nothing more than the Haskell implementation of Purely Functional Data Structures, doesn't it make more sense to port the SML code that's in the book / thesis? It should be easier than porting Haskell code, which must be annotated for strictness, while F# will have to annotated for laziness.

The language used by the book is SML with syntax extensions for lazy evaluation. F# provides half of those extensions natively:

> let x = lazy 12;;
val x : Lazy<int> = <unevaluated>
> match x with
  | Lazy(n) -> n;;
val it : int = 12
> x;;
val it : Lazy<int> = 12

To convert the book's fun lazy notation, change this:

fun lazy plus ($m, $n) = $m + n

To this:

let plus (m',n') = lazy (
  match (m',n') with
  | (Lazy(m), Lazy(n)) -> (lazy (m + n)).Force())

(See page 33 in the book). The differences from between SML and F# are minor syntax, so the translation should be easy.

As for whether it's worthwhile, most of the data structures in Okasaki's book are very specialised, so they are unlikely to exist already in .NET, even as F#'s immutable Set and Map. It would be worthwhile for the people that need those data structures.

link|flag
vote up 3 vote down

I didn't follow the link, though I have at least a tiny familiarty with the work or Okasaki. So this whole answer is wildly speculative (I may be off base in my assumptions about what's in the Edison API).

I expect there is 'some benefit' in the sense that people like 'reference implementations of common FP data structures' in 'new languages' to help learn new languages.

As for the use in practice (rather than pedagogy), I expect that some of them are useful, though there are some F# and .Net APIs that may be as useful or more useful for many scenarios. The main couple 'batches' of overlapping functionality I would guess are the F# immutable collections (Set and Map), as well as the .Net 4.0 concurrent collections (like ConcurrentQueue).

Of course you'll also find some snippets on the web, like Jomo's immutable queue.

link|flag

Your Answer

Get an OpenID
or

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