1//! This module contains submodules for preprocessing tasks in HRV algorithms.
2//!
3//! The `noise` submodule provides functionalities to add noise to quantised data.
4//! The `outliers` submodule offers tools to detect and manage outliers in the dataset.
5pub mod noise;
6pub mod outliers;