lastIndexOf

fun A_Tuple.lastIndexOf(    value: A_BasicObject,     startIndex: Int,     endIndex: Int): Int

Search for a particular value in the tuple, starting at the given one-based index and working backward.

Return

The first encountered index of the code point when scanning backward from the startIndex. If the value is not found, answer

Parameters

value

The value to search for in the receiver.

startIndex

The position at which to start scanning backward.

endIndex

The position at which to stop scanning; should be <= startIndex for a non-empty range.