mirror of
https://github.com/Magnus167/rustframe.git
synced 2025-08-19 22:50:01 +00:00
545 B
545 B
Utilities
Utilities provide handy helpers around the core library. Existing tools include:
- Date utilities for generating calendar sequences.
Date Helpers
# extern crate rustframe;
use rustframe::utils::dateutils::{DatesList, DateFreq};
let list = DatesList::new("2024-01-01".into(), "2024-01-03".into(), DateFreq::Daily);
assert_eq!(list.count().unwrap(), 3);
Upcoming utilities will cover:
- Data import/export helpers
- Visualization adapters
- Streaming data interfaces
Contributions to these sections are welcome!