gpt4 book ai didi

ruby - 如何: Ruby Range that doesn't include the first value

转载 作者:数据小太阳 更新时间:2023-10-29 07:57:47 25 4
gpt4 key购买 nike

使用 Ruby 中的范围,您可以执行 0..5 来包含 0 和 5 之间的所有数字(包括 0 和 5)。您还可以执行 0...5 来包含不包括除 5 以外的相同数字。

(1..5) === 5
=> true
(1...5) === 5
=> false
(1...5) === 4.999999
=> true

有没有办法排除第一个数字而不是最后一个数字以获得这样的结果?

(1...5) === 1
=> false
(1...5) === 1.00000001
=> true

最佳答案

不,没有对此类范围的内置支持。如果此行为是必要的,您可能希望推出自己的 Range 类。

关于ruby - 如何: Ruby Range that doesn't include the first value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4511980/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com