Re: question on range types

2017-11-01 Thread Stefan_Salewski
Tiberium, is that explained properly in manual? I think a years ago manual refers only to array ranges when talking about rangeCheckOff pragma? You may investigate and fix that if not already fixed..

Re: question on range types

2017-11-01 Thread Tiberium
They are checked at runtime, but not in release mode (because -d:release does --rangeChecks:off)

question on range types

2017-11-01 Thread jackmott
range types like: type MySubrange = range[0..5] Are they also checked at runtime? Is there a way to disable them being checked at runtime in release mode?