Sha256: 053cf9d37f941267fa1ccb2ff5e73af4736717faf67dcf6eb4bc2f64222c158d

Contents?: true

Size: 518 Bytes

Versions: 3

Compression:

Stored size: 518 Bytes

Contents

require 'python/pickle/instruction'
require 'python/pickle/instructions/has_value'

module Python
  module Pickle
    module Instructions
      #
      # Represents the `BINGET` instruction.
      #
      class BinGet < Instruction

        include HasValue

        #
        # Initializes the `BINGET` instruction.
        #
        # @param [Integer] value
        #   The `BINGET` instruction's value.
        #
        def initialize(value)
          super(:BINGET,value)
        end

      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
python-pickle-0.2.0 lib/python/pickle/instructions/bin_get.rb
python-pickle-0.1.1 lib/python/pickle/instructions/bin_get.rb
python-pickle-0.1.0 lib/python/pickle/instructions/bin_get.rb