Méthode | Description | |
---|---|---|
Add ( object obj ) : bool |
Adds a new element to the ArrayList if it is not already present and sorts the ArrayList.
|
|
AddAll ( ICollection c ) : bool |
Adds all the elements of the specified collection that are not present to the list.
|
|
Contains ( object item ) : bool |
Determines whether an element is in the the current TreeSetSupport collection. The IComparer defined for the current set will be used to make comparisons between the elements already inserted in the collection and the item specified.
|
|
First ( ) : object |
Returns the first item in the set.
|
|
TailSet ( object limit ) : ISortedSet |
Returns a portion of the list whose elements are greater than the limit object parameter.
|
|
TreeSet ( ) : System |
Initializes a new instance of the TreeSet class.
|
|
TreeSet ( ICollection c ) : System |
Initializes a new instance of the TreeSet class.
|
|
TreeSet ( IComparer c ) : System |
Initializes a new instance of the TreeSet class.
|
|
UnmodifiableTreeSet ( ICollection collection ) : |
Unmodifiables the tree set.
|
Méthode | Description | |
---|---|---|
AddWithoutSorting ( object obj ) : bool |
public Add ( object obj ) : bool | ||
obj | object | Element to insert to the ArrayList. |
Résultat | bool |
public AddAll ( ICollection c ) : bool | ||
c | ICollection | Collection where the new elements will be added |
Résultat | bool |
public Contains ( object item ) : bool | ||
item | object | The object to be locatet in the current collection. |
Résultat | bool |
public TailSet ( object limit ) : ISortedSet | ||
limit | object | The start element of the portion to extract. |
Résultat | ISortedSet |
public TreeSet ( ICollection c ) : System | ||
c | ICollection | The |
Résultat | System |
public static UnmodifiableTreeSet ( ICollection collection ) : |
||
collection | ICollection | The collection. |
Résultat |