Sha256: 9f4d550a5d9af5cbc2c1f93a0f3ff1f617c5f7ff53d06e9d53b05aa759b20366

Contents?: true

Size: 451 Bytes

Versions: 3

Compression:

Stored size: 451 Bytes

Contents

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

module Python
  module Pickle
    module Instructions
      class Float < Instruction

        include HasValue

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