Optional
Readonly
filter?: (result: ResultType) => booleanOptional
Readonly
rank?: Comparer<ResultType>Function to rank results. By default uses defaultComparer which orders by numeric value or alphabetical.
Optional
Readonly
shuffle?: booleanIf true, execution order is shuffled each time
Optional
Readonly
stop?: (latest: ResultType | undefined, sorted: readonly ResultType[]) => booleanIf provided, stops execution if true is returned. Result(s) include most recent execution.
If provided, filters the set of results prior to returning.