indexWhere_ method

List<int> indexWhere_(
  1. bool select(
    1. T
    )
)

Implementation

List<int> indexWhere_(bool Function(T) select) =>
    indexed.where((it) => select(it.$2)).map((e) => e.$1).toList();