From 3a7ae807b6ad3bf63fb24cbce5000fe71b2c9282 Mon Sep 17 00:00:00 2001 From: tadf Date: Sat, 20 Sep 2008 22:55:59 +0000 Subject: * lib/complex.rb: provides some obsolate methods. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19440 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 2 +- lib/complex.rb | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f00c1d8bf..adb830964 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,7 +15,7 @@ Sun Sep 21 07:43:16 2008 Tadayoshi Funaba * lib/mathn.rb: ditto. - * lib/complex.rb: ditto. + * lib/complex.rb: ditto. and provides some obsolate methods. Sun Sep 21 02:48:45 2008 NARUSE, Yui 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 -- cgit