Class: Integer
- Inherits:
-
Object
- Object
- Integer
- Defined in:
- lib/ektoplayer/compat.rb
Instance Method Summary collapse
Instance Method Details
#clamp(min, max) ⇒ Object
11 12 13 14 15 |
# File 'lib/ektoplayer/compat.rb', line 11 def clamp(min, max) return min if self < min return max if self > max self end |