package bitwise
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- sealed abstract class BitwiseInterpreter extends AnyRef
Created by chris on 1/6/16.
- sealed trait BitwiseOperation extends constant.ScriptOperation
Created by chris on 1/6/16.
Value Members
- object BitwiseInterpreter extends BitwiseInterpreter
- object BitwiseOperation extends ScriptOperationFactory[BitwiseOperation]
- case object OP_AND extends BitwiseOperation with Product with Serializable
Boolean and between each bit in the inputs.
Boolean and between each bit in the inputs. disabled.
- case object OP_EQUAL extends BitwiseOperation with Product with Serializable
Returns 1 if the inputs are exactly equal, 0 otherwise.
- case object OP_EQUALVERIFY extends BitwiseOperation with Product with Serializable
Same as OP_EQUAL, but runs org.bitcoins.core.script.control.OP_VERIFY afterward.
- case object OP_INVERT extends BitwiseOperation with Product with Serializable
Flips all of the bits in the input.
Flips all of the bits in the input. disabled.
- case object OP_OR extends BitwiseOperation with Product with Serializable
Boolean or between each bit in the inputs.
Boolean or between each bit in the inputs. disabled.
- case object OP_XOR extends BitwiseOperation with Product with Serializable
Boolean exclusive or between each bit in the inputs.
Boolean exclusive or between each bit in the inputs. disabled.