lastIndexWhere 抽象方法

int lastIndexWhere(
  1. bool test(
    1. E element
    ), [
  2. int? start
])

列表中满足提供的 test 的最后一个索引。

从索引 start 到 0 搜索列表。遇到第一个使 test(o) 为真的对象 o 时,返回 o 的索引。如果省略 start,则默认为列表的 长度

final notes = <String>['do', 're', 'mi', 're'];
final first = notes.lastIndexWhere((note) => note.startsWith('r')); // 3
final second = notes.lastIndexWhere((note) => note.startsWith('r'),
    2); // 1

如果未找到 element,则返回 -1。

final notes = <String>['do', 're', 'mi', 're'];
final index = notes.lastIndexWhere((note) => note.startsWith('k'));
print(index); // -1

实现

int lastIndexWhere(bool test(E element), [int? start]);