Searched defs:IDictionary (Results 1 - 1 of 1) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs38 using IDictionary = System.Collections.IDictionary;
44 public static bool containsKey( this IDictionary map, object key )
50 public static object get( this IDictionary map, object key )
55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key ) argument
93 public static void put( this IDictionary map, object key, object value )
99 public static void put<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key, TValue value ) argument
111 public static HashSet<object> keySet( this IDictionary map )
117 public static HashSet<TKey> keySet<TKey, TValue>( this IDictionary<TKey, TValue> map ) argument
122 // disambiguates for Dictionary, which implements both IDictionary<
[all...]

Completed in 277 milliseconds