Searched defs:hashSet (Results 1 – 1 of 1) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Config/ |
| D | SimpleJson.cs | 110 … public static void Add<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key, object value) in Add() 115 public static bool ContainsKey<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in ContainsKey() 120 public static ICollection<K> Keys<K>(this HashSet<KeyValuePair<K, object>> hashSet) in Keys() 125 public static bool Remove<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in Remove() 130 public static bool RemoveFirst<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in RemoveFirst() 136 …public static bool TryGetValue<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key, out object… in TryGetValue() 148 public static object Get<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key) in Get() 153 … public static void Set<K>(this HashSet<KeyValuePair<K, object>> hashSet, K key, object value) in Set() 159 public static ICollection<object> Values<K>(this HashSet<KeyValuePair<K, object>> hashSet) in Values()
|