Scala Iterator max() method with example
The max() method belongs to the concrete value members of the class Abstract Iterator. It is defined in the classes IterableOnceOps. It is utilized to find the largest element.
Method Definition : def max[B >: A](implicit ord: math.Ordering[B]): A
Where, B is the type over which the ordering is defined and ord is an ordering to be used for comparing elements.
Return Type :It returns the largest element of the collection stated with respect to the ordering ord.
Example #1:
// Scala program of max() // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Declaring an iterator val iter = Iterator( 22 , 36 , 66 , 19 , 21 ) // Applying max method val iter 1 = iter.max // Displays output println(iter 1 ) } } |
66
Therefore, the largest element of the collection stated is returned.
Example #2:
// Scala program of max() // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Declaring an iterator val iter = Iterator( 2.2 , 3.6 , 6.6 , 9.9 , 2.1 ) // Applying max method val iter 1 = iter.max // Displays output println(iter 1 ) } } |
9.9
Recommended Posts:
- Scala Iterator next() method with example
- Scala Map iterator method with example
- Scala Iterator sum() method with example
- Scala Iterator seq() method with example
- Scala Iterator map() method with example
- Scala Iterator min() method with example
- Scala Iterator take() method with example
- Scala Iterator zip() method with example
- Scala Iterator toList() method with example
- Scala Iterator toBuffer() method with example
- Scala Iterator toIterable() method with example
- Scala Iterator sameElements() method with example
- Scala Iterator isTraversableAgain() method with example
- Scala Iterator indexOf() method with example
- Scala Iterator slice() method with example
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.