Skip to main content

fcb_core/static_btree/query/
mod.rs

1// Query module for static-btree crate
2//
3// This module provides a higher-level interface for working with
4// static B+trees, including various index implementations and
5// query capabilities.
6
7mod memory;
8mod stream;
9mod types;
10
11#[cfg(feature = "http")]
12mod http;
13
14#[cfg(test)]
15mod tests;
16
17pub use memory::*;
18pub use stream::*;
19pub use types::{MultiIndex, Operator, Query, QueryCondition, SearchIndex};
20
21#[cfg(feature = "http")]
22pub use http::*;