HoconArray Methods
The HoconArray type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() |
Add(`0) |
Adds an object to the end of the List. (Inherited from List.) |
![]() |
AddRange(System.Collections.Generic.IEnumerable{`0}) |
Adds the elements of the specified collection to the end of the List. (Inherited from List.) |
![]() |
AsReadOnly |
Returns a read-only IList wrapper for the current collection. (Inherited from List.) |
![]() |
BinarySearch(System.Int32,System.Int32,`0,System.Collections.Generic.IComparer{`0}) |
Searches a range of elements in the sorted List for an element using the specified comparer and returns the zero-based index of the element. (Inherited from List.) |
![]() |
BinarySearch(`0) |
Searches the entire sorted List for an element using the default comparer and returns the zero-based index of the element. (Inherited from List.) |
![]() |
BinarySearch(`0,System.Collections.Generic.IComparer{`0}) |
Searches the entire sorted List for an element using the specified comparer and returns the zero-based index of the element. (Inherited from List.) |
![]() |
Clear |
Removes all elements from the List. (Inherited from List.) |
![]() |
Contains(`0) |
Determines whether an element is in the List. (Inherited from List.) |
![]() |
ConvertAll``1(System.Converter{System.Converter`2.TInput, ``0}) | (Inherited from List.) |
![]() |
CopyTo(`0[]) |
Copies the entire List to a compatible one-dimensional array, starting at the beginning of the target array. (Inherited from List.) |
![]() |
CopyTo(System.Int32,`0[],System.Int32,System.Int32) |
Copies a range of elements from the List to a compatible one-dimensional array, starting at the specified index of the target array. (Inherited from List.) |
![]() |
CopyTo(`0[],System.Int32) |
Copies the entire List to a compatible one-dimensional array, starting at the specified index of the target array. (Inherited from List.) |
![]() |
Equals(System.Object) | (Inherited from Object.) |
![]() |
Exists(System.Predicate{`0}) |
Determines whether the List contains elements that match the conditions defined by the specified predicate. (Inherited from List.) |
![]() |
Finalize |
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() |
Find(System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire List. (Inherited from List.) |
![]() |
FindAll(System.Predicate{`0}) |
Retrieves all the elements that match the conditions defined by the specified predicate. (Inherited from List.) |
![]() |
FindIndex(System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the entire List. (Inherited from List.) |
![]() |
FindIndex(System.Int32,System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the List that extends from the specified index to the last element. (Inherited from List.) |
![]() |
FindIndex(System.Int32,System.Int32,System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the first occurrence within the range of elements in the List that starts at the specified index and contains the specified number of elements. (Inherited from List.) |
![]() |
FindLast(System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire List. (Inherited from List.) |
![]() |
FindLastIndex(System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the entire List. (Inherited from List.) |
![]() |
FindLastIndex(System.Int32,System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the List that extends from the first element to the specified index. (Inherited from List.) |
![]() |
FindLastIndex(System.Int32,System.Int32,System.Predicate{`0}) |
Searches for an element that matches the conditions defined by the specified predicate, and returns the zero-based index of the last occurrence within the range of elements in the List that contains the specified number of elements and ends at the specified index. (Inherited from List.) |
![]() |
ForEach(System.Action{`0}) |
Performs the specified action on each element of the List. (Inherited from List.) |
![]() |
GetArray |
Gets the array.
|
![]() |
GetEnumerator |
Returns an enumerator that iterates through the List. (Inherited from List.) |
![]() |
GetHashCode |
Serves as a hash function for a particular type. (Inherited from Object.) |
![]() |
GetRange(System.Int32,System.Int32) |
Creates a shallow copy of a range of elements in the source List. (Inherited from List.) |
![]() |
GetString |
Gets the string.
|
![]() |
GetType |
Gets the Type of the current instance. (Inherited from Object.) |
![]() |
IndexOf(`0) |
Searches for the specified object and returns the zero-based index of the first occurrence within the entire List. (Inherited from List.) |
![]() |
IndexOf(`0,System.Int32) |
Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the List that extends from the specified index to the last element. (Inherited from List.) |
![]() |
IndexOf(`0,System.Int32,System.Int32) |
Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the List that starts at the specified index and contains the specified number of elements. (Inherited from List.) |
![]() |
Insert(System.Int32,`0) |
Inserts an element into the List at the specified index. (Inherited from List.) |
![]() |
InsertRange(System.Int32,System.Collections.Generic.IEnumerable{`0}) |
Inserts the elements of a collection into the List at the specified index. (Inherited from List.) |
![]() |
IsArray |
Determines whether this instance is array.
|
![]() |
IsString |
Determines whether this instance is string.
|
![]() |
LastIndexOf(`0) |
Searches for the specified object and returns the zero-based index of the last occurrence within the entire List. (Inherited from List.) |
![]() |
LastIndexOf(`0,System.Int32) |
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the List that extends from the first element to the specified index. (Inherited from List.) |
![]() |
LastIndexOf(`0,System.Int32,System.Int32) |
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the List that contains the specified number of elements and ends at the specified index. (Inherited from List.) |
![]() |
MemberwiseClone |
Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() |
Remove(`0) |
Removes the first occurrence of a specific object from the List. (Inherited from List.) |
![]() |
RemoveAll(System.Predicate{`0}) |
Removes all the elements that match the conditions defined by the specified predicate. (Inherited from List.) |
![]() |
RemoveAt(System.Int32) |
Removes the element at the specified index of the List. (Inherited from List.) |
![]() |
RemoveRange(System.Int32,System.Int32) |
Removes a range of elements from the List. (Inherited from List.) |
![]() |
Reverse |
Reverses the order of the elements in the entire List. (Inherited from List.) |
![]() |
Reverse(System.Int32,System.Int32) |
Reverses the order of the elements in the specified range. (Inherited from List.) |
![]() |
Sort |
Sorts the elements in the entire List using the default comparer. (Inherited from List.) |
![]() |
Sort(System.Collections.Generic.IComparer{`0}) |
Sorts the elements in the entire List using the specified comparer. (Inherited from List.) |
![]() |
Sort(System.Int32,System.Int32,System.Collections.Generic.IComparer{`0}) |
Sorts the elements in a range of elements in List using the specified comparer. (Inherited from List.) |
![]() |
Sort(System.Comparison{`0}) |
Sorts the elements in the entire List using the specified Comparison. (Inherited from List.) |
![]() |
ToArray |
Copies the elements of the List to a new array. (Inherited from List.) |
![]() |
ToString |
Returns a String that represents this instance.
|
![]() |
TrimExcess |
Sets the capacity to the actual number of elements in the List, if that number is less than a threshold value. (Inherited from List.) |
![]() |
TrueForAll(System.Predicate{`0}) |
Determines whether every element in the List matches the conditions defined by the specified predicate. (Inherited from List.) |