Scala Float !=(x: Double) method with example
The !=(x: Double) method is utilized to check whether the given float and double value are equal to each other or not.
Method Definition: (Float_Value)!=(x: Double)
Return Type: It returns true if the given float and double value is not equal to each other, otherwise return false.
Example #1:
// Scala program of Float !=(x: Double) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying !=(x: Double) function val result = ( 12 ).! = ( 12 ) // Displays output println(result) } } |
chevron_right
filter_none
Output:
false
Example #2:
// Scala program of Float !=(x: Double) // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Applying !=(x: Double) function val result = ( 10 ).! = ( 2232 ) // Displays output println(result) } } |
chevron_right
filter_none
Output:
true