Use a bloom filter.

This commit is contained in:
Stephen Chung
2022-09-08 17:49:37 +08:00
parent 1476b14831
commit 1bfedf516d
8 changed files with 217 additions and 178 deletions

View File

@@ -1,5 +1,6 @@
//! Module defining Rhai data types.
pub mod bloom_filter;
pub mod custom_types;
pub mod dynamic;
pub mod error;
@@ -9,6 +10,7 @@ pub mod interner;
pub mod parse_error;
pub mod scope;
pub use bloom_filter::BloomFilterU64;
pub use custom_types::{CustomTypeInfo, CustomTypesCollection};
pub use dynamic::Dynamic;
#[cfg(not(feature = "no_std"))]