VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-int-x-long-method-with-example-11/

⇱ Scala Int >(x: Long) method with example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala Int >(x: Long) method with example

Last Updated : 23 Jan, 2020
The >(x: Long) method is utilized to return true if the specified int value is greater than the long value.
Method Definition: (Int_Value).>(Long_Value) Return Type: It returns true if the specified int value is greater than the long value.
Example #1:
Output:
true
Example #2:
Output:
false
Comment
Article Tags:

Explore