aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/util/Iterators.java
blob: 74b728bdf710bf68a60ee4698003707ece896df1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
 * Copyright (C) 2025, NVIDIA Corporation.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.util;

import java.util.Iterator;

/**
 * Utility class for Iterators
 *
 * @since 6.10.2
 */
public class Iterators {
	/**
	 * Create an iterator which traverses an array in reverse.
	 *
	 * @param array T[]
	 * @return Iterator<T>
	 */
	public static <T> Iterator<T> reverseIterator(T[] array) {
		return new Iterator<>() {
			int index = array.length;

			@Override
			public boolean hasNext() {
				return index > 0;
			}

			@Override
			public T next() {
				return array[--index];
			}
		};
	}

	/**
	 * Make an iterable for easy use in modern for loops.
	 *
	 * @param iterator Iterator<T>
	 * @return Iterable<T>
	 */
	public static <T> Iterable<T> iterable(Iterator<T> iterator) {
		return new Iterable<>() {
			@Override
			public Iterator<T> iterator() {
				return iterator;
			}
		};
	}
}