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