1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The core library of the FlechasDB system.

#![warn(missing_docs)]

pub mod asyncdb;
pub mod db;
pub mod distribution;
pub mod error;
pub mod io;
pub mod kmeans;
pub mod linalg;
pub mod nbest;
pub mod numbers;
pub mod partitions;
pub mod protos;
pub mod slice;
pub mod vector;