akar-function 0.1.0

Function registry and expression evaluation for the Akar embedded graph database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Akar Function


Built-in function registry with scalar, aggregate, and table function dispatch.

**Registered functions (259):** 244 scalar + 14 aggregate + 1 table. Includes arithmetic, comparison, boolean, string, date/time, cast, list, map, struct, array, path, schema/utility, and 14 aggregates.

**Custom function support:**
- `CustomScalar` — closure-based scalar functions via extension framework
- `CustomTable` — closure-based table functions

**Aggregate state machine:** `AggValueState` enum with Count, Sum, Avg, Min, Max, Collect variants. Finalize() produces typed Value.

**Tests:** 176