Move bit-fields into new package.

This commit is contained in:
Stephen Chung
2022-01-03 23:10:20 +08:00
parent bccdf70521
commit 8961f36e8e
7 changed files with 215 additions and 196 deletions

View File

@@ -4,6 +4,7 @@ use crate::{Module, Shared};
pub(crate) mod arithmetic;
pub(crate) mod array_basic;
mod bit_field;
pub(crate) mod blob_basic;
mod fn_basic;
mod iter_basic;
@@ -20,6 +21,7 @@ mod time_basic;
pub use arithmetic::ArithmeticPackage;
#[cfg(not(feature = "no_index"))]
pub use array_basic::BasicArrayPackage;
pub use bit_field::BitFieldPackage;
#[cfg(not(feature = "no_index"))]
pub use blob_basic::BasicBlobPackage;
pub use fn_basic::BasicFnPackage;