Ejemplo n.º 1
0
 public TryGetValueDictionaryOperation <TKey, TValue> TryGetValue(TKey key) => DictionaryOperation.TryGetValue <TKey, TValue>(key);
Ejemplo n.º 2
0
 public GetValuesDictionaryOperation <TKey, TValue> GetValues() => DictionaryOperation.GetValues <TKey, TValue>();
Ejemplo n.º 3
0
 public RemoveDictionaryOperation <TKey, TValue> Remove(TKey key) => DictionaryOperation.Remove <TKey, TValue>(key);
Ejemplo n.º 4
0
 public GetDictionaryOperation <TKey, TValue> Get(TKey key) => DictionaryOperation.Get <TKey, TValue>(key);
Ejemplo n.º 5
0
 public SetDictionaryOperation <TKey, TValue> Set(TKey key, TValue value) => DictionaryOperation.Set <TKey, TValue>(key, value);
Ejemplo n.º 6
0
 public RemoveCollectionOperation <KeyValuePair <TKey, TValue> > Remove(KeyValuePair <TKey, TValue> value) => DictionaryOperation.Remove(value);
Ejemplo n.º 7
0
 public IsReadOnlyCollectionOperation <KeyValuePair <TKey, TValue> > IsReadOnly() => DictionaryOperation.IsReadOnly <TKey, TValue>();
Ejemplo n.º 8
0
 public ContainsKeyDictionaryOperation <TKey, TValue> ContainsKey(TKey key) => DictionaryOperation.ContainsKey <TKey, TValue>(key);
Ejemplo n.º 9
0
 public CopyToCollectionOperation <KeyValuePair <TKey, TValue> > CopyTo(KeyValuePair <TKey, TValue>[] array, int index) => DictionaryOperation.CopyTo(array, index);
Ejemplo n.º 10
0
 public ContainsCollectionOperation <KeyValuePair <TKey, TValue> > Contains(KeyValuePair <TKey, TValue> value) => DictionaryOperation.Contains(value);
Ejemplo n.º 11
0
 public ClearCollectionOperation <KeyValuePair <TKey, TValue> > Clear() => DictionaryOperation.Clear <TKey, TValue>();
Ejemplo n.º 12
0
 public AddDictionaryOperation <TKey, TValue> Add(TKey key, TValue value) => DictionaryOperation.Add(key, value);
Ejemplo n.º 13
0
 public EnumerateEnumerableOperation <KeyValuePair <TKey, TValue> > Enumerate() => DictionaryOperation.Enumerate <TKey, TValue>();
Ejemplo n.º 14
0
 public CountDictionaryOperation <TKey, TValue> Count() => DictionaryOperation.Count <TKey, TValue>();