Files
zig/src
Andrew Kelley 35d3444e27 more intuitive left shift and right shift operators
Before:
 * << is left shift, not allowed to shift 1 bits out
 * <<% is left shift, allowed to shift 1 bits out
 * >> is right shift, allowed to shift 1 bits out

After:
 * << is left shift, allowed to shift 1 bits out
 * >> is right shift, allowed to shift 1 bits out
 * @shlExact is left shift, not allowed to shift 1 bits out
 * @shrExact is right shift, not allowed to shift 1 bits out

Closes #413
2017-08-09 10:09:38 -04:00
..
2016-12-04 21:06:13 -05:00
2017-04-10 20:02:39 -04:00
2017-05-23 00:26:12 -04:00
2016-09-19 11:54:01 -04:00
2016-12-01 21:08:12 -05:00
2017-04-23 14:34:40 -04:00
2016-02-11 01:33:27 -07:00
2017-04-10 20:02:39 -04:00
2017-05-23 00:26:12 -04:00
2017-07-08 17:59:10 -04:00
2017-08-06 18:14:46 -04:00
2017-04-13 01:15:25 -04:00
2017-04-10 20:02:39 -04:00