ISet Interface

Represents type ISet.

Namespace: Spring.Collections
type
 ISet = interface(ICollection)
 ['{D83ED568-A7C8-4142-BA0F-5A273AF1AA07}']
 end;

The ISet type exposes the following members.

Show:
 NameDescription
Count

Returns the number of elements in a sequence. (Inherited from IEnumerable.)

ElementType

Returns the type of the elements in the sequence. (Inherited from IEnumerable.)

IsEmpty

Determines whether the sequence contains no elements. (Inherited from IEnumerable.)

IsReadOnly

Represents property IsReadOnly. (Inherited from ICollection.)

OnChanged

Represents property OnChanged. (Inherited from ICollection.)

Top
Show:
 NameDescription
Add(TValue)

Represents method Add(TValue).

AddRange(IEnumerable)

Overloaded. Represents method AddRange(IEnumerable). (Inherited from ICollection.)

AddRange(TValue[])

Overloaded. Represents method AddRange(TValue[]). (Inherited from ICollection.)

AsObject

Returns the reference to this instance. (Inherited from IEnumerable.)

Clear

Represents method Clear. (Inherited from ICollection.)

ExceptWith(IEnumerable)

Represents method ExceptWith(IEnumerable).

Extract(TValue)

Represents method Extract(TValue). (Inherited from ICollection.)

ExtractRange(IEnumerable)

Overloaded. Represents method ExtractRange(IEnumerable). (Inherited from ICollection.)

ExtractRange(TValue[])

Overloaded. Represents method ExtractRange(TValue[]). (Inherited from ICollection.)

GetCount

Represents method GetCount. (Inherited from IEnumerable.)

GetElementType

Represents method GetElementType. (Inherited from IEnumerable.)

GetEnumerator

Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.)

GetIsEmpty

Represents method GetIsEmpty. (Inherited from IEnumerable.)

GetIsReadOnly

Represents method GetIsReadOnly. (Inherited from ICollection.)

GetOnChanged

Represents method GetOnChanged. (Inherited from ICollection.)

IntersectWith(IEnumerable)

Represents method IntersectWith(IEnumerable).

IsSubsetOf(IEnumerable)

Represents method IsSubsetOf(IEnumerable).

IsSupersetOf(IEnumerable)

Represents method IsSupersetOf(IEnumerable).

Overlaps(IEnumerable)

Represents method Overlaps(IEnumerable).

Remove(TValue)

Represents method Remove(TValue). (Inherited from ICollection.)

RemoveRange(IEnumerable)

Overloaded. Represents method RemoveRange(IEnumerable). (Inherited from ICollection.)

RemoveRange(TValue[])

Overloaded. Represents method RemoveRange(TValue[]). (Inherited from ICollection.)

SetEquals(IEnumerable)

Represents method SetEquals(IEnumerable).

UnionWith(IEnumerable)

Represents method UnionWith(IEnumerable).

Top