コード例 #1
0
 public static TValue GetValueOrDefault <TValue, TKey>(this Dictionary <TKey, TValue> dictionary, TKey key)
 {
     return(Proxy.GetValueOrDefault(dictionary, key));
 }
コード例 #2
0
 public static bool EquivalentTo <K, V>(this IDictionary <K, V> thisMap, IDictionary <K, V> otherMap)
 {
     return(Proxy.EquivalentTo(thisMap, otherMap));
 }
コード例 #3
0
 public static List <T> ConvertAll <T, K, V>(IDictionary <K, V> map, Func <K, V, T> createFn)
 {
     return(Proxy.ConvertAll(map, createFn));
 }
コード例 #4
0
 public static void ForEach <TKey, TValue>(this Dictionary <TKey, TValue> dictionary, Action <TKey, TValue> onEachFn)
 {
     Proxy.ForEach(dictionary, onEachFn);
 }