Scala Byte -(x: Int): Int Last Updated : 14 Jan, 2020 Comments Improve Suggest changes Like Article Like Report In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method -(x:Int) method is utilized to return the difference of this value by x Method Definition: Byte -(x: Int): Int Return Type: It returns the difference of this value by x. Example #1: Scala // Scala program of Byte -(x: Int) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Byte -(x: Int) function val result = (167.toByte).-(125:Int) // Displays output println(result) } } Output: -213 Example #2: Scala // Scala program of Byte -(x: Int) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying Byte -(x: Int) function val result = (128.toByte).-(2:Int) // Displays output println(result) } } Output: -130 Comment More infoAdvertise with us Next Article Scala Byte -(x: Int): Int S Shivam_k Follow Improve Article Tags : Python Scala Scala Scala-byte Practice Tags : python Similar Reads Scala Byte +(x: Int): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method +(x:Int) method is utilized to return the sum of this value by x Method Definition: Byte +(x: Int): Int Return Type: It returns the sum of this value by x. Example #1: Scala // Scala program of Byte +(x: 1 min read Scala Byte +(x: Char): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method +(x:Char) method is utilized to return the sum of this value by x. Method Definition: Byte +(x: Char): Int Return Type: It returns the sum of this value by x. Example #1: Scala // Scala program of Byte +( 1 min read Scala Byte <(x: Int): Boolean In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method <(x:Int) method is utilized to return true if this value is less than x, false otherwise. Method Definition: Byte <(x: Int): Boolean Return Type: It returns true if this value is less than x, false 1 min read Scala Byte +(x: Short): Int In Scala, Byte is a 8-bit signed integer (equivalent to Java's byte primitive type). The method +(x:Short) method is utilized to return the sum of this value by x Method Definition: Byte +(x: Short): Int Return Type: It returns the sum of this value by x. Example #1: Scala // Scala program of Byte + 1 min read Scala short /(x: Byte): Int Short, a 16-bit signed integer (equivalent to Java's short primitive type) is a subtype of scala.AnyVal. The /(x: Byte) method is utilized to return a result of the quotient operation on the specified Byte value by the x. Method Definition: def /(x: Byte): Int Return Type: It returns quotient with v 1 min read Like