#counter #atomic #64-bit #everywhere #increase-only

counter64

64bit increase-only atomic counter for everywhere

1 unstable release

Uses old Rust 2015

0.1.0 Apr 12, 2018

#6 in #everywhere

MIT/Apache

10KB
208 lines

Counter64

Build Status

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.

No runtime deps