sortedLastIndex function

int sortedLastIndex(
  1. List list,
  2. dynamic value
)

Implementation

int sortedLastIndex(List list, dynamic value) =>
    _sortedIndex(list, value, operation: gte);