2020-06-18 16:45:19 -05:00
|
|
|
// wasm32 does not support benches (no time).
|
|
|
|
#![cfg(not(target_arch = "wasm32"))]
|
2017-02-03 17:04:22 -06:00
|
|
|
#![feature(flt2dec)]
|
|
|
|
#![feature(test)]
|
|
|
|
|
|
|
|
extern crate test;
|
|
|
|
|
|
|
|
mod any;
|
2019-03-18 17:32:36 -05:00
|
|
|
mod ascii;
|
2018-11-13 11:03:06 -06:00
|
|
|
mod char;
|
2019-12-06 22:18:12 -06:00
|
|
|
mod fmt;
|
2017-02-03 17:04:22 -06:00
|
|
|
mod hash;
|
|
|
|
mod iter;
|
|
|
|
mod num;
|
|
|
|
mod ops;
|
2019-12-16 08:33:16 -06:00
|
|
|
mod pattern;
|
2017-10-16 07:05:16 -05:00
|
|
|
mod slice;
|