blob: 5594be811abda8072f1369fbce47579f47369028 (
plain)
1
2
3
4
5
6
7
8
|
set(listvar a b c d e)
list(GET listvar
18446744073709551616 # 2^64
2147483648 # 2^31
4294967296 # 2^32; errors out-of-range as -2147483643 due to underflow
out)
message("ERANGE: -->${out}<--")
|