Interface Streams.LongFunctionWithIndex<R extends @Nullable Object>

Enclosing class:
Streams

public static interface Streams.LongFunctionWithIndex<R extends @Nullable Object>
An analogue of LongFunction also accepting an index.

This interface is only intended for use by callers of Streams.mapWithIndex(LongStream, LongFunctionWithIndex).

Since:
21.0 (but only since 33.4.0 in the Android flavor)
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(long from, long index)
    Applies this function to the given argument and its index within a stream.
  • Method Details

    • apply

      R apply(long from, long index)
      Applies this function to the given argument and its index within a stream.