↓ 1 callersMethodreverseReturns a reversed view of the specified list. For example, {@code Lists.reverse(Arrays.asList(1, 2, 3))} returns a list containing {@code 3, 2, 1}. T
src/main/java/com/fernandocejas/arrow/collections/Lists.java:178
↓ 1 callersMethodtoStringReturns a string representation of {@code iterable}, with the format {@code [e1, e2, ..., en]} (that is, identical to {@link java.util.Arrays Arrays}{
src/main/java/com/fernandocejas/arrow/collections/Iterables.java:321
↓ 1 callersMethodtoStringReturns a string representation of {@code iterator}, with the format {@code [e1, e2, ..., en]}. The iterator will be left exhausted: its {@code hasNex
src/main/java/com/fernandocejas/arrow/collections/Iterators.java:155