
org.opalj.br.instructions.IAND.scala Maven / Gradle / Ivy
The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package instructions
/**
* Boolean AND int.
*
* @author Michael Eichberg
*/
case object IAND extends BitwiseInstruction {
final val opcode = 126
final val mnemonic = "iand"
final def operator: String = "&"
final val computationalType = ComputationalTypeInt
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy