5555/**
5656 * Static utility methods related to {@code Stream} instances.
5757 *
58- * @since NEXT (but since 21.0 in the JRE flavor)
58+ * @since 33.4.0 (but since 21.0 in the JRE flavor)
5959 */
6060@ GwtCompatible
6161@ ElementTypesAreNonnullByDefault
@@ -409,7 +409,7 @@ public boolean tryAdvance(Consumer<? super R> action) {
409409 * This method behaves equivalently to {@linkplain #zip zipping} the stream elements into
410410 * temporary pair objects and then using {@link Stream#forEach} on that stream.
411411 *
412- * @since NEXT (but since 22.0 in the JRE flavor)
412+ * @since 33.4.0 (but since 22.0 in the JRE flavor)
413413 */
414414 @ Beta
415415 public static <A extends @ Nullable Object , B extends @ Nullable Object > void forEachPair (
@@ -767,7 +767,7 @@ Splitr createSplit(Spliterator.OfDouble from, long i) {
767767 * <p>This interface is only intended for use by callers of {@link #mapWithIndex(Stream,
768768 * FunctionWithIndex)}.
769769 *
770- * @since NEXT (but since 21.0 in the JRE flavor)
770+ * @since 33.4.0 (but since 21.0 in the JRE flavor)
771771 */
772772 public interface FunctionWithIndex <T extends @ Nullable Object , R extends @ Nullable Object > {
773773 /** Applies this function to the given argument and its index within a stream. */
@@ -828,7 +828,7 @@ public int characteristics() {
828828 * <p>This interface is only intended for use by callers of {@link #mapWithIndex(IntStream,
829829 * IntFunctionWithIndex)}.
830830 *
831- * @since NEXT (but since 21.0 in the JRE flavor)
831+ * @since 33.4.0 (but since 21.0 in the JRE flavor)
832832 */
833833 public interface IntFunctionWithIndex <R extends @ Nullable Object > {
834834 /** Applies this function to the given argument and its index within a stream. */
@@ -842,7 +842,7 @@ public interface IntFunctionWithIndex<R extends @Nullable Object> {
842842 * <p>This interface is only intended for use by callers of {@link #mapWithIndex(LongStream,
843843 * LongFunctionWithIndex)}.
844844 *
845- * @since NEXT (but since 21.0 in the JRE flavor)
845+ * @since 33.4.0 (but since 21.0 in the JRE flavor)
846846 */
847847 public interface LongFunctionWithIndex <R extends @ Nullable Object > {
848848 /** Applies this function to the given argument and its index within a stream. */
@@ -856,7 +856,7 @@ public interface LongFunctionWithIndex<R extends @Nullable Object> {
856856 * <p>This interface is only intended for use by callers of {@link #mapWithIndex(DoubleStream,
857857 * DoubleFunctionWithIndex)}.
858858 *
859- * @since NEXT (but since 21.0 in the JRE flavor)
859+ * @since 33.4.0 (but since 21.0 in the JRE flavor)
860860 */
861861 public interface DoubleFunctionWithIndex <R extends @ Nullable Object > {
862862 /** Applies this function to the given argument and its index within a stream. */
0 commit comments