indexWhere 抽象方法

int indexWhere(
  1. bool test(
    1. E element
    ), [
  2. int start = 0
])

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

从索引 start 开始搜索列表直到列表末尾。遇到第一个满足 test(o) 为 true 的对象 o 时,返回 o 的索引。

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

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

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

实现

int indexWhere(bool test(E element), [int start = 0]);