//! Task module providing task management functionality
//!
//! This module provides functions to retrieve the index of the currently running task.
pub use crategetTaskIdxRB;
/// Function to get the index of the currently running task
///
/// # Returns
/// * `u32` - The index of the current task
///
/// # Examples
/// ```
/// let task_idx = get_task_idx();
/// ```