Iterables.rangeTo(*, Integer.MAX_VALUE) results in infinite loop

Issue #65 resolved
John Kozlov created an issue

This code will never finish:

Iterables
    .rangeTo(Integer.MAX_VALUE - 100, Integer.MAX_VALUE)
    .forEach(System.out::println);

Comments (3)

  1. Log in to comment