Click or drag to resize

VelocityDbHashSetTUnionWith Method

Take the union of this VelocityDbHashSet with other. Modifies this set. Implementation note: GetSuggestedCapacity (to increase capacity in advance avoiding multiple resizes ended up not being useful in practice; quickly gets to the point where it's a wasteful check.

Namespace:  VelocityDb.Collection
Assembly:  VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax
public void UnionWith(
	IEnumerable<T> other
)

Parameters

other
Type: System.Collections.GenericIEnumerableT
enumerable with items to add
See Also