File: neg.rb

package info (click to toggle)
ruby-powerpack 0.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 320 kB
  • ctags: 53
  • sloc: ruby: 727; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
unless Numeric.method_defined? :neg?
  class Numeric
    # Checks whether a number is negative.
    #
    # @return [Boolean] true is the number is negative, false otherwise
    #
    # @example
    #   5.neg? #=> false
    #
    # @example
    #   -0.5.neg? #=> true
    #
    # @example
    #   0.neg? #=> false
    def neg?
      self < 0
    end
  end
end