dntk 3.0.15

Command line's multi-platform interactive calculator, GNU bc wrapper.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(clippy::module_inception)]

mod bc;
mod buffer;
mod history;
mod prompt;
mod util;

mod dntker;
pub use dntker::Dntker;
#[cfg(test)]
pub(crate) use dntker::FilterResult;

#[cfg(test)]
mod tests;