Interface ISet<E>
.NET interface for TO BE DEFINED FROM USER
public interface ISet<E> : ICollection<E>
Type Parameters
E
- Inherited Members
Methods
Add(E)
bool Add(E arg0)
Parameters
arg0
EE
Returns
AddAll<Arg0ExtendsE>(Collection<Arg0ExtendsE>)
bool AddAll<Arg0ExtendsE>(Collection<Arg0ExtendsE> arg0) where Arg0ExtendsE : E
Parameters
arg0
Collection<Arg0ExtendsE>
Returns
Type Parameters
Arg0ExtendsE
E
Clear()
void Clear()
Contains(object)
bool Contains(object arg0)
Parameters
Returns
ContainsAll(Collection<object>)
bool ContainsAll(Collection<object> arg0)
Parameters
arg0
Collection<object>
Returns
IsEmpty()
bool IsEmpty()
Returns
Iterator()
Iterator<E> Iterator()
Returns
Remove(object)
bool Remove(object arg0)
Parameters
Returns
RemoveAll(Collection<object>)
bool RemoveAll(Collection<object> arg0)
Parameters
arg0
Collection<object>
Returns
RetainAll(Collection<object>)
bool RetainAll(Collection<object> arg0)
Parameters
arg0
Collection<object>
Returns
Size()
int Size()
Returns
Spliterator()
Spliterator<E> Spliterator()
Returns
ToArray()
object[] ToArray()
Returns
ToArray<T>(T[])
T[] ToArray<T>(T[] arg0)
Parameters
arg0
T[]T
Returns
- T[]
T
Type Parameters
T