Tagged Questions
3
votes
2answers
279 views
Immutable pure data classes with public setters on properties
I'm putting together some classes as a model for some information (that I'm currently pulling from a website).
The classes are implemented in C# - because in the current version of F# there are no ...
6
votes
1answer
409 views
What do you think of my Map implementation?
Just as a refresher I put together a simple Map implementation and I would love to get some feedback on it.
open System
open System.Collections.Generic
type Node<'a, 'b when 'a : comparison> = ...