gluesql-utils 0.19.0

GlueSQL - Open source SQL database engine fully written in Rust with pure functional execution layer, easily swappable storage and web assembly support!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![deny(clippy::str_to_string)]

mod hashmap;
mod indexmap;
mod or_stream;
mod tribool;
mod vector;

pub use {
    self::indexmap::IndexMap, hashmap::HashMapExt, or_stream::OrStream, tribool::Tribool,
    vector::Vector,
};