HashSet<TKey, TValue>.IsProperSubsetOf - метод
Determines whether the current set is a proper (strict) subset of a specified collection.
Пространство имён: Tessa.Platform.CollectionsСборка: Tessa (в Tessa.dll) Версия: 4.0.8
public bool IsProperSubsetOf(
IEnumerable<TValue> other
)
Public Function IsProperSubsetOf (
other As IEnumerable(Of TValue)
) As Boolean
public:
virtual bool IsProperSubsetOf(
IEnumerable<TValue>^ other
) sealed
abstract IsProperSubsetOf :
other : IEnumerable<'TValue> -> bool
override IsProperSubsetOf :
other : IEnumerable<'TValue> -> bool
- other IEnumerable<TValue>
- The collection to compare to the current set.
Booleantrue if the current set is a proper subset of
other; otherwise,
false.
ISet<T>.IsProperSubsetOf(IEnumerable<T>) | ArgumentNullException | other is null. |