Scala Char !=(x: Int) method with example
The !=(x: Int) method is utilized to check if the stated character value is not equal to 'x'. And the 'x' is of type Int. Method Definition: def !=(x: Int): Boolean Return Type: It returns true if the stated character value is not equal to 'x' else it returns false. Example: 1# // Scala program of !