switch case range inclusive or exclusive?
    Steven Schveighoffer 
    schveiguy at gmail.com
       
    Mon Apr  6 12:48:58 UTC 2020
    
    
  
On 4/6/20 5:50 AM, WebFreak001 wrote:
> In the D spec it says for CaseRangeStatement:
> https://dlang.org/spec/statement.html#CaseRangeStatement
> 
>> A CaseRangeStatement is a shorthand for listing a series of case 
>> statements from FirstExp to LastExp.
> 
> does this mean LastExp is inclusive or exclusive part of the range?
> 
> I think the spec needs to be improved a little bit here for clarity.
Inclusive. It's as if you typed all the case statements out between them.
I agree, it could be clearer, if you just added ", including LastExp"
-Steve
    
    
More information about the Digitalmars-d-learn
mailing list