Packages

package bitwise

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed abstract class BitwiseInterpreter extends AnyRef

    Created by chris on 1/6/16.

  2. sealed trait BitwiseOperation extends constant.ScriptOperation

    Created by chris on 1/6/16.

Value Members

  1. object BitwiseInterpreter extends BitwiseInterpreter
  2. object BitwiseOperation extends ScriptOperationFactory[BitwiseOperation]
  3. 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.

  4. case object OP_EQUAL extends BitwiseOperation with Product with Serializable

    Returns 1 if the inputs are exactly equal, 0 otherwise.

  5. case object OP_EQUALVERIFY extends BitwiseOperation with Product with Serializable

    Same as OP_EQUAL, but runs org.bitcoins.core.script.control.OP_VERIFY afterward.

  6. 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.

  7. 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.

  8. 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.

Ungrouped