예제 #1
0
 public bool Remove(Pair <K1, K2> key)
 {
     return(backingMap.Remove(key));
 }
예제 #2
0
 public void Put(Pair <K1, K2> key, V value)
 {
     backingMap.GetValues();
 }
예제 #3
0
 public bool ContainsKey(Pair <K1, K2> key)
 {
     return(backingMap.ContainsKey(key));
 }
예제 #4
0
 public V Get(Pair <K1, K2> key)
 {
     return(backingMap.Get(key));
 }