//#region src/compat/_internal/ArrayIterator.d.ts
type ArrayIterator<T, R> = (value: T, index: number, collection: T[]) => R;
//#endregion
export { ArrayIterator };