Sha256: aeb963938bbc4e02f8e2a3b12dcdd5dbc75fd61eb247e0728c7dca06e1a8e190

Contents?: true

Size: 718 Bytes

Versions: 58

Compression:

Stored size: 718 Bytes

Contents

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(*)
    as_json.to_json
  end
end

Version data entries

58 entries across 56 versions & 21 rubygems

Version Path
alloy_sdk-0.1.0 vendor/bundle/ruby/3.0.0/gems/json-1.8.6/lib/json/add/complex.rb
alloy_sdk-0.1.0 vendor/bundle/ruby/2.6.0/gems/json-1.8.6/lib/json/add/complex.rb
logstash-output-scalyr-0.2.1.beta vendor/bundle/jruby/2.5.0/gems/json-1.8.6-java/lib/json/add/complex.rb
logstash-output-scalyr-0.2.0 vendor/bundle/jruby/2.5.0/gems/json-1.8.6-java/lib/json/add/complex.rb
logstash-filter-csharp-0.2.1 vendor/bundle/jruby/2.3.0/gems/json-1.8.6-java/lib/json/add/complex.rb
logstash-filter-csharp-0.2.0 vendor/bundle/jruby/2.3.0/gems/json-1.8.6-java/lib/json/add/complex.rb
logstash-filter-csharp-0.1.0 vendor/bundle/jruby/2.3.0/gems/json-1.8.6-java/lib/json/add/complex.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/json_pure-1.8.6/lib/json/add/complex.rb
logstash-filter-zabbix-0.1.2 vendor/bundle/jruby/1.9/gems/json-1.8.6-java/lib/json/add/complex.rb
logstash-filter-zabbix-0.1.1 vendor/bundle/jruby/1.9/gems/json-1.8.6-java/lib/json/add/complex.rb
json-1.8.6-java lib/json/add/complex.rb
json_pure-1.8.6 lib/json/add/complex.rb
json-1.8.6 lib/json/add/complex.rb
json-1.8.5-java lib/json/add/complex.rb
json_pure-1.8.5 lib/json/add/complex.rb
json-1.8.5 lib/json/add/complex.rb
ivanvc-logstash-input-s3-3.1.1.4 vendor/local/gems/json-1.8.3-java/lib/json/add/complex.rb
ivanvc-logstash-input-s3-3.1.1.3 vendor/local/gems/json-1.8.3-java/lib/json/add/complex.rb
ivanvc-logstash-input-s3-3.1.1.2 vendor/local/gems/json-1.8.3-java/lib/json/add/complex.rb
cvss-suite-1.0.8 vendor/cache/ruby/2.2.0/gems/json-1.8.3/lib/json/add/complex.rb