Created
July 17, 2019 23:36
-
-
Save mugyu/bd6044e9bdfbb378a8be10f28d4894c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Numeric | |
def to_be_between(min, max) | |
self < min ? min : self > max ? max : self | |
end | |
end | |
p 4.to_be_between(5, 10) # => 5 | |
p 5.to_be_between(5, 10) # => 5 | |
p 8.to_be_between(5, 10) # => 8 | |
p 10.to_be_between(5, 10) # => 10 | |
p 11.to_be_between(5, 10) # => 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment