Open In App

Scala Float isValidByte() method with example

Last Updated : 29 Oct, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The isValidByte() method is utilized to return true if the specified number is either zero or lies within the range of scala.Byte MinValue and MaxValue; otherwise returns false.

Method Definition: (Float_Number).isValidByte

Return Type: It returns true if the specified number is either zero or lies within the range of scala.Byte MinValue and MaxValue; otherwise returns false.

Example #1:




// Scala program of Float isValidByte()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying isValidByte method
        val result = (0).isValidByte
          
        // Displays output
        println(result)
      
    }


Output:

true

Example #2:




// Scala program of Float isValidByte()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying isValidByte method
        val result = (5.9).isValidByte
          
        // Displays output
        println(result)
      
    }


Output:

false


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads