Group use of std under one root.

This commit is contained in:
Stephen Chung
2020-03-10 10:07:44 +08:00
parent bae9946291
commit feaad4e0da
4 changed files with 24 additions and 22 deletions

View File

@@ -4,9 +4,12 @@
use crate::any::Any;
use crate::engine::{Array, Engine};
use crate::fn_register::RegisterFn;
use std::fmt::{Debug, Display};
use std::ops::{Add, BitAnd, BitOr, BitXor, Div, Mul, Neg, Range, Rem, Sub};
use std::{i32, i64, u32};
use std::{
fmt::{Debug, Display},
i32, i64,
ops::{Add, BitAnd, BitOr, BitXor, Div, Mul, Neg, Range, Rem, Sub},
u32,
};
#[cfg(feature = "unchecked")]
use std::ops::{Shl, Shr};