mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
84ac80f192
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
19 lines
429 B
Rust
19 lines
429 B
Rust
use test::{black_box, Bencher};
|
|
|
|
use super::corpora;
|
|
|
|
#[bench]
|
|
fn chars_advance_by_1000(b: &mut Bencher) {
|
|
b.iter(|| black_box(corpora::ru::LARGE).chars().advance_by(1000));
|
|
}
|
|
|
|
#[bench]
|
|
fn chars_advance_by_0010(b: &mut Bencher) {
|
|
b.iter(|| black_box(corpora::ru::LARGE).chars().advance_by(10));
|
|
}
|
|
|
|
#[bench]
|
|
fn chars_advance_by_0001(b: &mut Bencher) {
|
|
b.iter(|| black_box(corpora::ru::LARGE).chars().advance_by(1));
|
|
}
|