SecondToNinthElementOnIterableExtension<T> extension

on

Properties

eighth → T
Returns the eighth element in the list or the element at index 7.
no setter
eighthOrNull → T?
Returns the eighth element in the list or null if the list has less than 8 elements.
no setter
fifth → T
Returns the fifth element in the list or the element at index 4.
no setter
fifthOrNull → T?
Returns the fifth element in the list or null if the list has less than 5 elements.
no setter
fourth → T
Returns the fourth element in the list or the element at index 3.
no setter
fourthOrNull → T?
Returns the fourth element in the list or null if the list has less than 4 elements.
no setter
ninth → T
Returns the ninth element in the list or the element at index 8.
no setter
ninthOrNull → T?
Returns the ninth element in the list or null if the list has less than 9 elements.
no setter
second → T
Returns the second element in the list or the element at index 1.
no setter
secondOrNull → T?
Returns the second element in the list or null if the list has less than 2 elements.
no setter
seventh → T
Returns the seventh element in the list or the element at index 6.
no setter
seventhOrNull → T?
Returns the seventh element in the list or null if the list has less than 7 elements.
no setter
sixth → T
Returns the sixth element in the list or the element at index 5.
no setter
sixthOrNull → T?
Returns the sixth element in the list or null if the list has less than 6 elements.
no setter
third → T
Returns the third element in the list or the element at index 2.
no setter
thirdOrNull → T?
Returns the third element in the list or null if the list has less than 3 elements.
no setter