findRuns

fun <T> findRuns(list: List<T>, comparator: Comparator<T>): List<StatisticalRun<T>>

Return

the List of the runs in the order that they were determined.

Parameters

list

A list holding a sequence of objects for comparison, must not be null

comparator

a comparator to check for equality of the objects

the type of objects being compared