Class IntStreams

java.lang.Object
org.apache.commons.lang3.stream.IntStreams

public class IntStreams extends Object
Factory for IntStream.

Only a factory for now but could hold other functionality.

Since:
3.13.0
  • Constructor Details

  • Method Details

    • of

      @SafeVarargs public static IntStream of(int... values)
      Null-safe version of IntStream.of(int[]).
      Parameters:
      values - the elements of the new stream, may be null.
      Returns:
      the new stream on values or IntStream.empty().
      Since:
      3.18.0
    • range

      public static IntStream range(int endExclusive)
      Shorthand for IntStream.range(0, i).
      Parameters:
      endExclusive - the exclusive upper bound.
      Returns:
      a sequential IntStream for the range of int elements.
    • rangeClosed

      public static IntStream rangeClosed(int endInclusive)
      Shorthand for IntStream.rangeClosed(0, i).
      Parameters:
      endInclusive - the inclusive upper bound.
      Returns:
      a sequential IntStream for the range of int elements.