summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authornagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-27 12:22:42 +0000
committernagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-27 12:22:42 +0000
commitdf81c20827e12cbec437d68083fc0be1625dc661 (patch)
tree9054be76cbf70e4966a4d54a9b37acc1429af314 /ext
parent772d79be859721f42f3c3c85379f7124984564c9 (diff)
downloadruby-df81c20827e12cbec437d68083fc0be1625dc661.tar.gz
ruby-df81c20827e12cbec437d68083fc0be1625dc661.tar.xz
ruby-df81c20827e12cbec437d68083fc0be1625dc661.zip
* ext/tk/lib/tk/variable.rb: add TkVariable#+@ and -@ method.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25513 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/tk/lib/tk/variable.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/tk/lib/tk/variable.rb b/ext/tk/lib/tk/variable.rb
index 6a618e7ee..f6ebe551f 100644
--- a/ext/tk/lib/tk/variable.rb
+++ b/ext/tk/lib/tk/variable.rb
@@ -1175,6 +1175,13 @@ end
end
end
+ def +@
+ self.numeric
+ end
+ def -@
+ -(self.numeric)
+ end
+
def &(other)
if other.kind_of?(Array)
self.to_a & other.to_a