Sha256: c8585e140bc099b6ed2442ef971cd65866a760044d1a7d68d92daf01e7998bf9

Contents?: true

Size: 760 Bytes

Versions: 51

Compression:

Stored size: 760 Bytes

Contents

#frozen_string_literal: false
unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED
  require 'json'
end
defined?(::Complex) or require 'complex'

class Complex

  # Deserializes JSON string by converting Real value <tt>r</tt>, imaginary
  # value <tt>i</tt>, to a Complex object.
  def self.json_create(object)
    Complex(object['r'], object['i'])
  end

  # Returns a hash, that will be turned into a JSON object and represent this
  # object.
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      'r'            => real,
      'i'            => imag,
    }
  end

  # Stores class name (Complex) along with real value <tt>r</tt> and imaginary value <tt>i</tt> as JSON string
  def to_json(*args)
    as_json.to_json(*args)
  end
end

Version data entries

51 entries across 47 versions & 9 rubygems

Version Path
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/tdiary-5.1.5/vendor/bundle/ruby/3.0.0/gems/tdiary-5.1.4/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/complex.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/tdiary-5.1.5/vendor/bundle/ruby/3.0.0/gems/json-2.3.1/lib/json/add/complex.rb
tdiary-5.1.5 vendor/bundle/ruby/3.0.0/gems/tdiary-5.1.4/vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/complex.rb
tdiary-5.1.5 vendor/bundle/ruby/3.0.0/gems/json-2.3.1/lib/json/add/complex.rb
video_chat_get-0.1.9 vendor/bundle/ruby/2.5.0/gems/json-2.3.0/lib/json/add/complex.rb
tdiary-5.1.4 vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/complex.rb
video_chat_get-0.1.6 vendor/bundle/ruby/2.5.0/gems/json-2.3.0/lib/json/add/complex.rb
cloudsmith-api-0.54.15 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
cloudsmith-api-0.53.79 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
cloudsmith-api-0.53.17 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
cloudsmith-api-0.53.3 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
cloudsmith-api-0.53.1 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
grape-extra_validators-2.0.0 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
cloudsmith-api-0.52.121 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
cloudsmith-api-0.52.92 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.5.0/gems/json-2.3.1-java/lib/json/add/complex.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.5.0/gems/json-2.3.1-java/lib/json/add/complex.rb
cloudsmith-api-0.52.79 vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb
tdiary-5.1.3 vendor/bundle/ruby/2.6.0/gems/json-2.3.0/lib/json/add/complex.rb
tdiary-5.1.3 vendor/bundle/ruby/2.7.0/gems/json-2.3.1/lib/json/add/complex.rb