LinkedList.ListIterator(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a list-iterator of the elements in this list (in proper sequence), starting at the specified position in the list.
[Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler")]
public override Java.Util.IListIterator ListIterator (int index);
[<Android.Runtime.Register("listIterator", "(I)Ljava/util/ListIterator;", "GetListIterator_IHandler")>]
override this.ListIterator : int -> Java.Util.IListIterator
Parameters
- index
- Int32
index of the first element to be returned from the
list-iterator (by a call to next)
Returns
a ListIterator of the elements in this list (in proper sequence), starting at the specified position in the list
Implements
- Attributes
Exceptions
if location size()
Remarks
Java documentation for java.util.LinkedList.listIterator(int).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.