https://github.com/btodell/atomic_ref_box
A thread-safe pointer type that uniquely owns a heap allocation but allows immutable (weak) references to be shared
https://github.com/btodell/atomic_ref_box
Last synced: about 1 year ago
JSON representation
A thread-safe pointer type that uniquely owns a heap allocation but allows immutable (weak) references to be shared
- Host: GitHub
- URL: https://github.com/btodell/atomic_ref_box
- Owner: BTOdell
- License: mit
- Created: 2024-02-20T22:42:28.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-20T22:55:45.000Z (over 2 years ago)
- Last Synced: 2025-03-09T04:36:12.749Z (over 1 year ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Atomic Ref Box
> A thread-safe pointer type that uniquely owns a heap allocation of type T,
> but allows immutable (weak) references to be created and shared.
## UNFINISHED IMPLEMENTATION!
Help needed.