lastWhereOrElse method
Last element satisfying predicate, or orElse if none.
Audited: 2026-06-12 11:26 EDT
Implementation
T lastWhereOrElse(ElementPredicate<T> predicate, T orElse) {
// Start from orElse and overwrite on each match so the LAST match wins and a
// matched `null` (nullable T) is preserved. `found ?? orElse` would wrongly
// drop a matched null and return orElse instead.
T result = orElse;
for (final T element in this) {
if (predicate(element)) result = element;
}
return result;
}