Add a notes about integer casting to the changelog (#6996)

This commit is contained in:
Dmitry Atamanov
2018-01-03 14:42:09 +03:00
committed by Andreas Rumpf
parent 8941f5bd9c
commit ce983383fc

View File

@@ -187,3 +187,6 @@ let
mySeq = @[1, 2, 1, 3, 1, 4]
myCounter = mySeq.toCountTable()
```
- Added support for casting between integers of same bitsize in VM (compile time and nimscript).
This allow to among other things to reinterpret signed integers as unsigned.