[This is preliminary documentation and is subject to change.]

The IReadOnlyList<(Of <(<'T>)>)> type exposes the following members.

Methods

  NameDescription
Public methodContains
Determines whether an element is in the IReadOnlyList<(Of <(<'T>)>)>.
Public methodConvertAll<(Of <<'(TOutput>)>>)
Converts the elements in the current IReadOnlyList<(Of <(<'T>)>)> to another type, and returns a list containing the converted elements.
Public methodCopyTo(array<T>[]()[][])
Copies the entire IReadOnlyList<(Of <(<'T>)>)> to a compatible one-dimensional array, starting at the beginning of the target array.
Public methodCopyTo(array<T>[]()[][], Int32)
Copies the entire IReadOnlyList<(Of <(<'T>)>)> to a compatible one-dimensional array, starting at the specified index of the target array.
Public methodCopyTo(Int32, array<T>[]()[][], Int32, Int32)
Copies a range of elements from the IReadOnlyList<(Of <(<'T>)>)> to a compatible one-dimensional array, starting at the specified index of the target array.
Public methodExists
Determines whether the IReadOnlyList<(Of <(<'T>)>)> contains elements that match the conditions defined by the specified predicate.
Public methodFind
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire IReadOnlyList<(Of <(<'T>)>)>.
Public methodFindAll
Retrieves the all the elements that match the conditions defined by the specified predicate.
Public methodFindIndex(Predicate<(Of <<'(T>)>>))
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 IReadOnlyList<(Of <(<'T>)>)>.
Public methodFindIndex(Int32, Predicate<(Of <<'(T>)>>))
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 IReadOnlyList<(Of <(<'T>)>)> that extends from the specified index to the last element.
Public methodFindIndex(Int32, Int32, Predicate<(Of <<'(T>)>>))
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 IReadOnlyList<(Of <(<'T>)>)> that starts at the specified index and contains the specified number of elements.
Public methodFindLast
Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire IReadOnlyList<(Of <(<'T>)>)>.
Public methodFindLastIndex(Predicate<(Of <<'(T>)>>))
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 IReadOnlyList<(Of <(<'T>)>)>.
Public methodFindLastIndex(Int32, Predicate<(Of <<'(T>)>>))
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 IReadOnlyList<(Of <(<'T>)>)> that extends from the first element to the specified index.
Public methodFindLastIndex(Int32, Int32, Predicate<(Of <<'(T>)>>))
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 IReadOnlyList<(Of <(<'T>)>)> that contains the specified number of elements and ends at the specified index.
Public methodForEach
Performs the specified action on each element of the IReadOnlyList<(Of <(<'T>)>)>.
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerable<(Of <(<'T>)>)>.)
Public methodGetRange
Creates a shallow copy of a range of elements in the source IReadOnlyList<(Of <(<'T>)>)>.
Public methodIndexOf(T)
Searches for the specified object and returns the zero-based index of the first occurrence within the entire IReadOnlyList<(Of <(<'T>)>)>.
Public methodIndexOf(T, Int32)
Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the IReadOnlyList<(Of <(<'T>)>)> that extends from the specified index to the last element.
Public methodIndexOf(T, Int32, Int32)
Searches for the specified object and returns the zero-based index of the first occurrence within the range of elements in the IReadOnlyList<(Of <(<'T>)>)> that starts at the specified index and contains the specified number of elements.
Public methodLastIndexOf(T)
Searches for the specified object and returns the zero-based index of the last occurrence within the entire IReadOnlyList<(Of <(<'T>)>)>.
Public methodLastIndexOf(T, Int32)
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the IReadOnlyList<(Of <(<'T>)>)> that extends from the first element to the specified index.
Public methodLastIndexOf(T, Int32, Int32)
Searches for the specified object and returns the zero-based index of the last occurrence within the range of elements in the IReadOnlyList<(Of <(<'T>)>)> that contains the specified number of elements and ends at the specified index.
Public methodToArray
Copies the elements of the IReadOnlyList<(Of <(<'T>)>)> to a new array.
Public methodTrueForAll
Determines whether every element in the IReadOnlyList<(Of <(<'T>)>)> matches the conditions defined by the specified predicate.

Extension Methods

  NameDescription
Public Extension MethodIndexOf<(Of <<'(T>)>>)
Gets index of first occurence of given item in given collection
(Defined by EnumerableT.)
Public Extension MethodLast<(Of <<'(T>)>>)
Gets last item in collection
(Defined by CollectionTools.)
Public Extension MethodUnionAll<(Of <<'(T>)>>)(array<IEnumerable<(Of <<'(T>)>>)>[]()[][])Overloaded.
Creates union of given collection with other given collections
(Defined by EnumerableT.)
Public Extension MethodUnionAll<(Of <<'(T>)>>)(IEnumerable<(Of <<'(IEnumerable<(Of <<'(T>)>>)>)>>))Overloaded.
Creates union of given collection with other given collections
(Defined by EnumerableT.)

Properties

  NameDescription
Public propertyCount
Gets the number of elements actually contained in the IReadOnlyList<(Of <(<'T>)>)>.
Public propertyItem
Gets or sets the element at the specified index.

See Also