Exemplo n.º 1
0
 public bool ContainsKey(TKey key)
 {
     if (m_deltaDict.ContainsKey(key))
     {
         return(true);
     }
     return(m_baseDict.ContainsKey(key));
 }
Exemplo n.º 2
0
 public bool ContainsKey(TKey key)
 {
     if (key.Equals(m_key))
     {
         return(true);
     }
     return(m_baseDict.ContainsKey(key));
 }
Exemplo n.º 3
0
 public bool ContainsKey(Symbol key)
 {
     if (key == m_key)
     {
         return(true);
     }
     return(m_baseDict.ContainsKey(key));
 }
Exemplo n.º 4
0
 public static bool ContainsKey <TType, TValue>(
     this IDict <Symbol, TValue> dict, TypedSymbol <TType> key)
     where TType : TValue
 {
     return(dict.ContainsKey(key.Symbol));
 }