indexWhere 抽象方法
列表中满足提供条件的第一个索引。
从索引 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]);