完成bitmap的static bitmap功能,能够静态声明bitmap (#490)

* 完成bitmap的static bitmap功能,能够静态声明bitmap
This commit is contained in:
LoGin
2024-01-15 18:13:22 +08:00
committed by GitHub
parent dcf232f378
commit 6994f6b113
7 changed files with 1363 additions and 1 deletions

View File

@ -0,0 +1,9 @@
#![no_std]
#![feature(core_intrinsics)]
#![allow(incomplete_features)] // for const generics
#![feature(generic_const_exprs)]
mod bitmap_core;
mod static_bitmap;
pub mod traits;
pub use static_bitmap::StaticBitmap;