1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! # RSLife Prelude
//!
//! Conveniently re-exports the most common types and functions for actuarial calculations.
//! Import this module to access all primary RSLife features with a single `use` statement.
//!
//! ## Example
//!
//! ```rust
//! use rslife::prelude::*;
//! // Now you can use MortTableConfig, MortXML, Ax, Axn, aaxn, tpx, etc.
//! ```
// Core mortality table types and configuration
pub use crate;
// XML data loading and parsing
pub use crate;
// All actuarial calculation functions (implementation functions from whole.rs)
pub use crate;
// Unified interface for whole and fractional age calculations
pub use crate;
// Most commonly used Polars types for working with mortality tables
pub use ;