A range can be inclusive of both bounds given (denoted by joining two values by ".."), or it can include the lower bound and exclude the upper bound (denoted by instead using "...").
However, it seems that this library treats "..." ranges as exclusive-exclusive rather than inclusive-exclusive.
Citing the spec,
However, it seems that this library treats "..." ranges as exclusive-exclusive rather than inclusive-exclusive.