ruby - Is there an elegant way to exclude the first value of a range? -


मान लें कि मेरे पास 0 से 10 की सीमा है:

  range = 0 .. .10  

तीन बिंदुओं का मतलब है, कि अंतिम मान (10) को बाहर रखा गया है:

  range.include? 10 = & gt; गलत  

अब, क्या पहले मूल्य को बाहर करने का एक समान और सुरुचिपूर्ण तरीका है?
उपर्युक्त उदाहरण के लिए, इसका अर्थ सभी मूल्यों को शामिल करना है 0 से अधिक बड़ा ( & gt; , नहीं & gt; = ) और छोटा 10 से।

नहीं।

  ((0 + 1) ..10)  

Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -