reductstore 1.20.4

ReductStore is a time series database designed specifically for storing and managing large amounts of blob data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2021-2026 ReductSoftware UG
// Licensed under the Apache License, Version 2.0

mod abs;
mod add;
mod div;
mod div_num;
mod mult;
mod rem;
mod sub;

pub(crate) use abs::Abs;
pub(crate) use add::Add;
pub(crate) use div::Div;
pub(crate) use div_num::DivNum;
pub(crate) use mult::Mult;
pub(crate) use rem::Rem;
pub(crate) use sub::Sub;