如何在Ruby中构建范围?

前端之家收集整理的这篇文章主要介绍了如何在Ruby中构建范围?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有可能在ruby中使用解构来提取结束并从范围开始?
module PriceHelper
  def price_range_human( range )
    "$%s to $%s" % [range.begin,range.end].map(:number_to_currency)
  end
end

我知道我可以使用数组强制作为一个非常糟糕的黑客:

first,*center,last = *rng
"$%s to $%s" % [first,last].map(:number_to_currency)

但是有没有一种语法方式来获得开始和结束而不实际手动创建一个数组?

min,max = (1..10)

本来很棒的.

解决方法

不,在Cary Swoveland,周刊世界新闻或其他小报证明不正确之前,我会继续相信没有任何证据表明答案是“不”;但它很容易制作.
module RangeWithBounds
  refine Range do
    def bounds
      [self.begin,self.end]
    end
  end
end

module Test
  using RangeWithBounds
  r = (1..10)
  b,e = *r.bounds
  puts "#{b}..#{e}"
end

然后,我首先要写“#{r.begin.number_to_currency} ..#{r.end.number_to_currency}”.

原文链接:https://www.f2er.com/ruby/264833.html

猜你在找的Ruby相关文章