d4t_formulas/lib/d4rt_formulas.dart

10 lines
324 B
Dart
Raw Permalink Normal View History

/// A library for working with mathematical formulas using the d4rt interpreter.
2026-02-09 15:57:53 +00:00
///
/// This library provides data models for representing formulas and an evaluator
/// for executing them using the d4rt Dart interpreter.
2025-09-05 16:53:06 +00:00
library;
export 'formula_models.dart';
export 'formula_evaluator.dart';
2026-02-09 15:57:53 +00:00
export 'error_handler.dart';