Skip to main content

Module math

Module math 

Source
Expand description

SQLite 3.35+ math functions (§13.2).

All 30 math functions: trig, hyperbolic, rounding, log/exp, and misc. Always included in FrankenSQLite (no compile flag needed).

§NaN / Inf semantics

  • NaN results are normalized to NULL.
  • +Inf / -Inf are valid REAL values and propagate.
  • Division by zero (mod) returns NULL.

Structs§

AcosFunc
AcoshFunc
AsinFunc
AsinhFunc
Atan2Func
AtanFunc
AtanhFunc
CeilFunc
CosFunc
CoshFunc
DegreesFunc
ExpFunc
FloorFunc
LnFunc
Log2Func
Log10Func
log(X) — base-10 logarithm (single arg).
LogFunc
log(X) with 1 arg = base-10. log(B, X) with 2 args = base-B.
ModFunc
PiFunc
PowFunc
RadiansFunc
SinFunc
SinhFunc
SqrtFunc
TanFunc
TanhFunc
TruncFunc

Functions§

register_math_builtins
Register all §13.2 math functions into the given registry.