public bool Remove(Pair <K1, K2> key) { return(backingMap.Remove(key)); }
public void Put(Pair <K1, K2> key, V value) { backingMap.GetValues(); }
public bool ContainsKey(Pair <K1, K2> key) { return(backingMap.ContainsKey(key)); }
public V Get(Pair <K1, K2> key) { return(backingMap.Get(key)); }