pike.git/
CHANGES
Branch:
Tag:
Non-build tags
All tags
No tags
2019-12-21
2019-12-21 13:03:35 by Henrik Grubbström (Grubba) <grubba@grubba.org>
b878698dc6b95757b7367eb54b6f635297889715 (
6
lines) (+
6
/-
0
)
[
Show
|
Annotate
]
Branch:
master
Compiler: Added new syntax for int(X..X): int(X).
32:
typeof, when used like this, behaves very much like the C++ decltype() expression.
+
o Shorthand for int(val..val) added: int(val).
+
+
A syntax for when the range of an integer type only
+
contains a single value.
+
o ** operator added. It's exponentiation and works with most combination of numerical types (int,float,Gmp.mpq,Gmp.mpf,Gmp.mpz)