using System.Collections.Generic; namespace ET { public class MultiDictionary: Dictionary> { public bool TryGetDic(T t, out Dictionary k) { return this.TryGetValue(t, out k); } public bool TryGetValue(T t, M m, out N n) { n = default; if (!this.TryGetValue(t, out Dictionary dic)) { return false; } return dic.TryGetValue(m, out n); } public void Add(T t, M m, N n) { Dictionary kSet; this.TryGetValue(t, out kSet); if (kSet == null) { kSet = new Dictionary(); this[t] = kSet; } kSet.Add(m, n); } public bool Remove(T t, M m) { this.TryGetValue(t, out Dictionary dic); if (dic == null || !dic.Remove(m)) { return false; } if (dic.Count == 0) { this.Remove(t); } return true; } public bool ContainSubKey(T t, M m) { this.TryGetValue(t, out Dictionary dic); if (dic == null) { return false; } return dic.ContainsKey(m); } public bool ContainValue(T t, M m, N n) { this.TryGetValue(t, out Dictionary dic); if (dic == null) { return false; } if (!dic.ContainsKey(m)) { return false; } return dic.ContainsValue(n); } } }