rust/library/core/benches/lib.rs

20 lines
274 B
Rust
Raw Normal View History

// wasm32 does not support benches (no time).
#![cfg(not(target_arch = "wasm32"))]
#![feature(flt2dec)]
2021-09-05 13:54:29 -05:00
#![feature(int_log)]
#![feature(test)]
extern crate test;
mod any;
mod ascii;
mod char;
mod fmt;
mod hash;
mod iter;
mod num;
mod ops;
mod pattern;
mod slice;
2021-09-10 14:35:01 -05:00
mod str;