Beispiel #1
0
 public bool Has(RuntimeObject item)
 {
     return(collection.TryGet <object>(item) != null);
 }
Beispiel #2
0
        public EcmaValue Get(RuntimeObject key)
        {
            Entry entry = collection.TryGet <Entry>(key);

            return(entry != null ? entry.Value : default);