Sha256: 401a2dba7e5d0850f925c60a210d0344990d202a5cf49e1ab7fbdcce86b7dbd3

Contents?: true

Size: 445 Bytes

Versions: 3

Compression:

Stored size: 445 Bytes

Contents

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

module Python
  module Pickle
    module Instructions
      class Int < Instruction

        include HasValue

        #
        # Initializes the `INT` instruction.
        #
        # @param [Integer] value
        #   The `INT` instruction's value.
        #
        def initialize(value)
          super(:INT,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/int.rb
python-pickle-0.1.1 lib/python/pickle/instructions/int.rb
python-pickle-0.1.0 lib/python/pickle/instructions/int.rb