I was not able to find the answer to my question in the archive,
why Stream.concat is not implemented like this ?

  @SafeVarargs
  public static <T> Stream<T> concat(Stream<T>... streams) {
    return Arrays.stream(streams).flatMap(Function.identity());
  }

Rémi

Reply via email to