//! Const-compatible integer casting functions.
//!
//! This module provides explicit, const-compatible functions for integer type conversions
//! that would normally be done using the [`Into`] trait. Since trait methods cannot be used
//! in `const` contexts, these functions serve as alternatives that make conversion intent
//! clear while maintaining compile-time evaluation capabilities.
/// Converts `u16` to `u64`
pub const
/// Converts `u32` to `u64`
pub const
/// Converts `i16` to `i64`
pub const
/// Converts `u16` to `u32`
pub const