Module: NilIfZero::Extension
- Defined in:
- lib/nil-if-zero.rb
Instance Method Summary collapse
Instance Method Details
#nil_if_zero ⇒ Object
6 7 8 |
# File 'lib/nil-if-zero.rb', line 6 def nil_if_zero self unless zero? end |
#nil_unless_zero ⇒ Object
10 11 12 |
# File 'lib/nil-if-zero.rb', line 10 def nil_unless_zero self if zero? end |