Add `Numeric#{positive?,negative?}`; CRuby2.3

parent 44f07045
......@@ -14,4 +14,12 @@ module Integral
self
end
end
def positive?
self > 0
end
def negative?
self < 0
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment