LongStream mapToInt(LongToIntFunction mapper)
returns an IntStream
by applying the given function.
This is an intermediate operation.
mapToInt
has the following syntax.
IntStream mapToInt(LongToIntFunction mapper)
The following example shows how to use mapToInt
.
import java.util.stream.LongStream; public class Main { public static void main(String[] args) { LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE); b.mapToInt(n -> {return (int)n;}).forEach(System.out::println); } }
The code above generates the following result.