// 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 or the MIT license // , 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()) }