↓ 6 callersMethodzipOffsetOneThis will zip neighboring elements of the list. This returns (0, 1), (1, 2), (2, 3) ... Therefore, elements can appear multiple times in the list! <p>
src/main/java/de/photon/anticheataddition/util/datastructure/batch/BatchPreprocessors.java:45
↓ 5 callersMethodzipToPairsThis will zip neighboring elements of the list. This returns (0, 1), (2, 3), (4, 5) ... Therefore, every element is at most in one pair. <p> The last
src/main/java/de/photon/anticheataddition/util/datastructure/batch/BatchPreprocessors.java:24