//namespace Immutable { using System; using System.Linq; using System.Collections.Generic; using System.Collections; using Mutable = System.Collections.Generic; using Microsoft.FSharp.Collections; using System.Collections.Immutable; // TODO: use Microsoft.FSharp.Collections.FSharpMap /* public class ImmutableDictionary : Mutable.IReadOnlyDictionary { private readonly Mutable.Dictionary d; private System.Collections.Immutable.ImmutableDictionary i = System.Collections.Immutable.ImmutableDictionary.Empty; //private readonly FSharpMap x = new FSharpMap(Enumerable.Enpty>()); public ImmutableDictionary() { d = new Mutable.Dictionary(); } public ImmutableDictionary(Mutable.Dictionary d) { // Clone the mutable dictionary. this.d = new Mutable.Dictionary(d, d.Comparer); } public ImmutableDictionary(ImmutableDictionary immutableDictionary, TKey key, TValue value) { // Clone the mutable dictionary contained within that immutable // dictionary before updating it. var clone = new Mutable.Dictionary(immutableDictionary.d, immutableDictionary.d.Comparer); clone.Add(key, value); this.d = clone; } public ImmutableDictionary(ImmutableDictionary immutableDictionary) { // No need to clone the mutable dictionary contained within // that immutable dictionary, since we know it is never mutated. this.d = immutableDictionary.d; } public TValue this[TKey key] { get => d[key]; } public IEnumerable Keys { get => d.Keys; } public IEnumerable Values { get => d.Values; } public int Count { get => d.Count; } public IEqualityComparer Comparer { get => d.Comparer; } public bool TryGetValue(TKey key, out TValue value) => d.TryGetValue(key, out value); public bool ContainsKey(TKey key) => d.ContainsKey(key); public ImmutableDictionary With(TKey key, TValue value) => new ImmutableDictionary(this, key, value); IEnumerator> IEnumerable>.GetEnumerator() => d.GetEnumerator(); IEnumerator IEnumerable.GetEnumerator() => d.GetEnumerator(); } public static class ImmutableDictionaryExtensionMethods { public static ImmutableDictionary ToImmutableDictionary(this IEnumerable e, Func key, Func value) => new ImmutableDictionary(e.ToDictionary(key, value)); } // Prevent usage of the mutable dictionary. public abstract class Dictionary : ImmutableDictionary { } //} */