blob: c66d58fd447251389fa24728709453303676cafe [file] [log] [blame]
package accord.utils;
public interface IndexedRangeTriConsumer<P1, P2, P3>
{
/**
* Consume some object parameters associated with a range of indexes from a collection.
*
* The first parameter is typically used to convey some container the indexes refer to,
* with the others providing other configuration.
*/
void accept(P1 p1, P2 p2, P3 p3, int fromIndex, int toIndex);
}