summaryrefslogtreecommitdiffstats
path: root/vendor/unic-char-range/benches/benchmarks.rs
blob: a05ac271e7bf2513761f3cb7ea97680adc46ba08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright 2017 The UNIC Project Developers.
//
// See the COPYRIGHT file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![feature(test)]

extern crate test;

use std::char;
use unic_char_range::CharRange;

#[bench]
fn forward_iteration(b: &mut test::Bencher) {
    b.iter(|| CharRange::all().iter().count())
}

#[bench]
fn forward_iteration_baseline(b: &mut test::Bencher) {
    b.iter(|| (0..0x11_0000).filter_map(char::from_u32).count())
}

#[bench]
fn reverse_iteration(b: &mut test::Bencher) {
    b.iter(|| CharRange::all().iter().rev().count())
}

#[bench]
fn reverse_iteration_baseline(b: &mut test::Bencher) {
    b.iter(|| (0..0x11_0000).rev().filter_map(char::from_u32).count())
}

#[bench]
fn range_length(b: &mut test::Bencher) {
    b.iter(|| CharRange::all().len())
}