]> git.lizzy.rs Git - rust.git/commit
Unify computation of length in `EscapeUnicode`
authorAndrea Canciani <ranma42@gmail.com>
Wed, 30 Dec 2015 20:45:24 +0000 (21:45 +0100)
committerAndrea Canciani <ranma42@gmail.com>
Thu, 28 Jan 2016 14:13:42 +0000 (15:13 +0100)
commit2fd2670ea0a55b7f7481c5ce2a95c5c5033941d5
tree58670df4b48fe6bca30943a4362254a3318b4f1e
parent035f4cca00d20fcf889c8c588125cd07b632a476
Unify computation of length in `EscapeUnicode`

The `offset` value was computed both in `next` and in `size_hint`;
computing it in a single place ensures consistency and makes it easier
to apply improvements. The value is now computed as soon as the
iterator is constructed. This means that the time to compute it is
spent immediately and cannot be avoided, but it also guarantees that
it is only spent once.
src/libcore/char.rs