summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-20 22:55:59 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-20 22:55:59 +0000
commit3a7ae807b6ad3bf63fb24cbce5000fe71b2c9282 (patch)
tree67f8feeae29e2940d4763306c61e0c217174fa7d /lib
parent53bdd18fad863543aab6ff66c3a629d3b343749a (diff)
downloadruby-3a7ae807b6ad3bf63fb24cbce5000fe71b2c9282.tar.gz
ruby-3a7ae807b6ad3bf63fb24cbce5000fe71b2c9282.tar.xz
ruby-3a7ae807b6ad3bf63fb24cbce5000fe71b2c9282.zip
* lib/complex.rb: provides some obsolate methods.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/complex.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/complex.rb b/lib/complex.rb
index c03ee63c3..301879143 100644
--- a/lib/complex.rb
+++ b/lib/complex.rb
@@ -16,3 +16,9 @@ class Complex
alias image imag
end
+
+class Numeric
+
+ def im() Complex(0, self) end
+
+end