]> git.lizzy.rs Git - rust.git/blob - src/librustc/benches/pattern.rs
Rollup merge of #49461 - andreastt:child-kill-exited, r=Mark-Simulacrum
[rust.git] / src / librustc / benches / pattern.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use test::Bencher;
12
13 // Overhead of various match forms
14
15 #[bench]
16 fn option_some(b: &mut Bencher) {
17     let x = Some(10);
18     b.iter(|| {
19         match x {
20             Some(y) => y,
21             None => 11
22         }
23     });
24 }
25
26 #[bench]
27 fn vec_pattern(b: &mut Bencher) {
28     let x = [1,2,3,4,5,6];
29     b.iter(|| {
30         match x {
31             [1,2,3,..] => 10,
32             _ => 11,
33         }
34     });
35 }