ISet<T>.SetEquals(IEnumerable<T>) Method
Determines whether the current set and the specified collection contain the same elements.
public function SetEquals(const other: IEnumerable<T>): Boolean;
Parameters
- other
- Type: IEnumerable<T>
The collection to compare to the current set.
Return Value
Type: Boolean
True if the current set is equal to other; otherwise, False.
- Spring.EArgumentNullException
- other is nil.