Created
March 15, 2017 10:10
-
-
Save k-hamada/ab8d4699a3254094fe81cf1c8f7bdc12 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
[1] pry(main)> require "date" | |
=> true | |
[2] pry(main)> (Date.today .. Date::Infinity.new).cover? Date.parse("2112/9/3") | |
=> true | |
[3] pry(main)> (-Date::Infinity.new .. Date::Infinity.new).cover? Date.parse("2112/9/3") | |
=> false | |
[4] pry(main)> (0 .. Float::INFINITY).cover? 1 | |
=> true | |
[5] pry(main)> (-Float::INFINITY .. Float::INFINITY).cover? 1 | |
=> true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment