VOOZH about

URL: https://www.geeksforgeeks.org/java/intstream-mapintunaryoperator-mapper-java/

⇱ IntStream map(IntUnaryOperator mapper) in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

IntStream map(IntUnaryOperator mapper) in Java

Last Updated : 6 Dec, 2018
IntStream map(IntUnaryOperator mapper) returns a stream consisting of the results of applying the given function to the elements of this stream. This is an intermediate operation. These operations are always lazy. Intermediate operations are invoked on a Stream instance and after they finish their processing, they give a Stream instance as output. Syntax :
IntStream map(IntUnaryOperator mapper)
Parameters :
  1. IntStream : A sequence of primitive int-valued elements.
  2. IntUnaryOperator : An operation on a single int-valued operand that produces an int-valued result.
  3. mapper : A stateless function which is applied to each element and the function returns the new stream.
Return Value : IntStream map(IntUnaryOperator mapper) returns a stream by applying the given function. Example 1 : Using IntStream map() to get the negative of square of elements of IntStream.
Output:
-16
-25
-36
-49
Example 2 :Using IntStream map() to get the half of elements of IntStream in given range.
Output:
1
1
2
2
3
Comment