Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
`CodeBuffer::print_indent` use `iter::repeat_n(...)` instead of `iter::repeat(...).take(...)`. `repeat_n` is faster as its iterator has a guaranteed size bound, and so doesn't bounds check repeatedly before pushing each individual byte.
- Loading branch information