Class: Numeric
- Inherits:
-
Object
- Object
- Numeric
- Defined in:
- lib/portnum.rb
Instance Method Summary collapse
Instance Method Details
#impar? ⇒ Boolean
9 10 11 |
# File 'lib/portnum.rb', line 9 def impar? self % 2 == 1 end |
#par? ⇒ Boolean
5 6 7 |
# File 'lib/portnum.rb', line 5 def par? self % 2 == 0 end |