Метод Scala Char <= (x: Long) с примером

Опубликовано: 13 Марта, 2022

Метод <= (x: Long) используется, чтобы определить, является ли указанное значение символа меньше или равно 'x' или нет. И тип «x» должен быть длинным.

Method Definition: def <=(x: Long): Boolean

Return Type: It returns true if the stated character value is less than or equal to “x” else it returns false.

Example: 1#

// Scala program of <=(x: Long)
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying <=(x: Long) method 
        val result = "Z".<=(100000L)
          
        // Displays output
        println(result)
      
    }
Output:
true

Example: 2#

// Scala program of <=(x: Long)
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying <=(x: Long) method
        val result = "Z".<=(-100000L)
          
        // Displays output
        println(result)
      
    }
Output:
false