I'm observing F#'s Map is always ordered based on its keys. Does F# provide any alternative to an ordered dictionary?
I wanted to ask before using a C# Dictionary as an alternative.
I'm observing F#'s Map is always ordered based on its keys. Does F# provide any alternative to an ordered dictionary?
I wanted to ask before using a C# Dictionary as an alternative.
FSharpx.Collections has the PersistentHashMap, which isn't ordered.