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