lxdb-engine 0.1.0

Lazy semantic token and relation queries over LXDB datasets.
Documentation
mod dataset_ext;
mod error;
mod iter;
mod query;
mod relation;
mod token;

#[cfg(test)]
mod test_support;

pub use dataset_ext::BinaryDatasetExt;
pub use error::EngineError;
pub use query::DatasetQuery;

pub use iter::{AdjacencyRecordIter, RecordIter, RelationRecordIter, TokenRecordIter};

pub use relation::{BinaryRelation, BinaryRelationIter};

pub use token::{BinaryToken, BinaryTokenIter};