rustledger-query 0.10.0

Beancount query engine (BQL) with SQL-like syntax for ledger queries
Documentation
1
2
3
4
5
6
7
8
9
10
//! Function evaluation modules for the BQL executor.
//!
//! This module organizes function implementations by category for better maintainability.

mod account;
mod date;
mod math;
mod position;
mod string;
mod util;