You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_ => panic!("must convert render types to indexes before serializing"),
188
195
};
189
-
// zig-zag notation
196
+
// zig-zag encoding
190
197
let value:u32 = (id << 1) | (if sign {1}else{0});
191
-
// encode
192
-
// Documented in https://rust-lang.github.io/rustc-dev-guide/rustdoc-internals/search.html
198
+
// Self-terminating hex use capital letters for everything but the
199
+
// least significant digit, which is lowercase. For example, decimal 17
200
+
// would be `` Aa `` if zig-zag encoding weren't used.
201
+
//
202
+
// Zig-zag encoding, however, stores the sign bit as the last bit.
203
+
// This means, in the last hexit, 1 is actually `c`, -1 is `b`
204
+
// (`a` is the imaginary -0), and, because all the bits are shifted
205
+
// by one, `` A` `` is actually 8 and `` Aa `` is -8.
0 commit comments