Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BennieCopeland/a69253779bd5b09a088d14a149822b0e to your computer and use it in GitHub Desktop.
Save BennieCopeland/a69253779bd5b09a088d14a149822b0e to your computer and use it in GitHub Desktop.
F# - converting a C# dictionary to a Map
let inline toMap kvps =
kvps
|> Seq.map (|KeyValue|)
|> Map.ofSeq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment