1 unstable release
Uses old Rust 2015
0.1.0 | Apr 12, 2018 |
---|
#41 in #64-bit
10KB
208 lines
Counter64
64bit increase-only atomic counter for everywhere!
License
This repository is dual-licensed under the MIT license and Apache license 2.0 at your option. By contributing to Counter64 you agree that your contributions will be licensed under these two licenses.
lib.rs
:
64bit increase-only atomic counter for everywhere.
Counter64
uses single AtomicUsize
when it can serve u64
.
Otherwise, it fallbacks to use multiple AtomicUsize
and combine them.