Open In App

Scala Long &(x: Char) method

In Scala, Long is a 64-bit signed integer, which is equivalent to Java’s long primitive type. The &(x: Char) method is utilized to return the Bitwise AND of the specified Long value and Char value.

Method Definition – def &(x: Char)



Returns – Returns Bitwise AND of this value and x.

Example #1:




// Scala program to explain working of
// &(x: Char) method
  
// Creating object
object GfG
  
// Main method
def main(args:Array[String])
{
  
// Applying &(x: Char) method 
val result = (13.toLong).&('G':Char)
  
// Displays output
println(result)
  
}

Output:



5

 

Example #2:




// Scala program to explain working of
// &(x: Char) method
  
// Creating object
object GfG
  
// Main method
def main(args:Array[String])
{
  
// Applying &(x: Char) method 
val result = (7.toLong).&('A':Char)
  
// Displays output
println(result)
  
}

Output:

1

Article Tags :