1 write to _values
System.Data.Entity (1)
System\Data\Common\Utils\Set.cs (1)
77
_values
= new HashSet<TElement>(
21 references to _values
System.Data.Entity (21)
System\Data\Common\Utils\Set.cs (21)
44
: this(other.
_values
, other.Comparer)
91
return
_values
.Count;
102
return
_values
.Comparer;
113
return
_values
.Contains(element);
124
_values
.Add(element);
149
_values
.Remove(element);
159
_values
.Clear();
167
return
_values
.ToArray();
177
return
_values
.Count == other.
_values
.Count
178
&&
_values
.IsSubsetOf(other.
_values
);
188
return
_values
.IsSubsetOf(other.
_values
);
198
return
_values
.Overlaps(other.
_values
);
209
_values
.ExceptWith(other);
231
_values
.UnionWith(other);
254
_values
.IntersectWith(other.
_values
);
300
return
_values
.GetEnumerator();