refactor: re-order imports
Modules first, imports second
This commit is contained in:
parent
cbe1688dcd
commit
e701c212cd
@ -1,5 +1,3 @@
|
|||||||
use criterion::*;
|
|
||||||
|
|
||||||
mod add_remove;
|
mod add_remove;
|
||||||
mod add_remove_big_sparse_set;
|
mod add_remove_big_sparse_set;
|
||||||
mod add_remove_big_table;
|
mod add_remove_big_table;
|
||||||
@ -11,6 +9,7 @@ mod insert_simple;
|
|||||||
mod insert_simple_unbatched;
|
mod insert_simple_unbatched;
|
||||||
|
|
||||||
use archetype_updates::*;
|
use archetype_updates::*;
|
||||||
|
use criterion::{criterion_group, Criterion};
|
||||||
|
|
||||||
criterion_group!(
|
criterion_group!(
|
||||||
benches,
|
benches,
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
use criterion::*;
|
|
||||||
|
|
||||||
mod iter;
|
mod iter;
|
||||||
mod send;
|
mod send;
|
||||||
|
|
||||||
|
use criterion::{criterion_group, Criterion};
|
||||||
|
|
||||||
criterion_group!(benches, send, iter);
|
criterion_group!(benches, send, iter);
|
||||||
|
|
||||||
fn send(c: &mut Criterion) {
|
fn send(c: &mut Criterion) {
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
use criterion::*;
|
|
||||||
|
|
||||||
mod heavy_compute;
|
mod heavy_compute;
|
||||||
mod iter_frag;
|
mod iter_frag;
|
||||||
mod iter_frag_foreach;
|
mod iter_frag_foreach;
|
||||||
@ -22,6 +20,7 @@ mod iter_simple_wide_sparse_set;
|
|||||||
mod par_iter_simple;
|
mod par_iter_simple;
|
||||||
mod par_iter_simple_foreach_hybrid;
|
mod par_iter_simple_foreach_hybrid;
|
||||||
|
|
||||||
|
use criterion::{criterion_group, Criterion};
|
||||||
use heavy_compute::*;
|
use heavy_compute::*;
|
||||||
|
|
||||||
criterion_group!(
|
criterion_group!(
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
use criterion::criterion_group;
|
|
||||||
|
|
||||||
mod propagation;
|
mod propagation;
|
||||||
mod simple;
|
mod simple;
|
||||||
|
|
||||||
|
use criterion::criterion_group;
|
||||||
use propagation::*;
|
use propagation::*;
|
||||||
use simple::*;
|
use simple::*;
|
||||||
|
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
use criterion::criterion_group;
|
|
||||||
|
|
||||||
mod combinator_system;
|
mod combinator_system;
|
||||||
mod dyn_param;
|
mod dyn_param;
|
||||||
mod param_set;
|
mod param_set;
|
||||||
|
|
||||||
use combinator_system::*;
|
use combinator_system::*;
|
||||||
|
use criterion::criterion_group;
|
||||||
use dyn_param::*;
|
use dyn_param::*;
|
||||||
use param_set::*;
|
use param_set::*;
|
||||||
|
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
use criterion::criterion_group;
|
|
||||||
|
|
||||||
mod run_condition;
|
mod run_condition;
|
||||||
mod running_systems;
|
mod running_systems;
|
||||||
mod schedule;
|
mod schedule;
|
||||||
|
|
||||||
|
use criterion::criterion_group;
|
||||||
use run_condition::*;
|
use run_condition::*;
|
||||||
use running_systems::*;
|
use running_systems::*;
|
||||||
use schedule::*;
|
use schedule::*;
|
||||||
|
@ -1,22 +1,17 @@
|
|||||||
use criterion::criterion_group;
|
|
||||||
|
|
||||||
mod commands;
|
mod commands;
|
||||||
use commands::*;
|
|
||||||
|
|
||||||
mod despawn;
|
mod despawn;
|
||||||
use despawn::*;
|
|
||||||
|
|
||||||
mod despawn_recursive;
|
mod despawn_recursive;
|
||||||
use despawn_recursive::*;
|
|
||||||
|
|
||||||
mod spawn;
|
|
||||||
use spawn::*;
|
|
||||||
|
|
||||||
mod world_get;
|
|
||||||
use world_get::*;
|
|
||||||
|
|
||||||
mod entity_hash;
|
mod entity_hash;
|
||||||
|
mod spawn;
|
||||||
|
mod world_get;
|
||||||
|
|
||||||
|
use commands::*;
|
||||||
|
use criterion::criterion_group;
|
||||||
|
use despawn::*;
|
||||||
|
use despawn_recursive::*;
|
||||||
use entity_hash::*;
|
use entity_hash::*;
|
||||||
|
use spawn::*;
|
||||||
|
use world_get::*;
|
||||||
|
|
||||||
criterion_group!(
|
criterion_group!(
|
||||||
benches,
|
benches,
|
||||||
|
Loading…
Reference in New Issue
Block a user