Open Issues Need Help
View All on GitHub Convert `unchecked` functions into `unsafe` 3 months ago
AI Summary: The task requires refactoring the `unchecked` functions in the `timed-map` crate to `unsafe` functions. This involves changing the function signatures and potentially modifying internal logic to ensure data safety when these functions are used. The goal is to prevent potential reads of expired or invalid data by explicitly marking the functions as unsafe, requiring developers to understand and manage the risks associated with their use.
Complexity:
4/5
good first issue
Lightweight map implementation that supports expiring entries and fully compatible with both std and no_std environments.
Rust