ab-aligned-buffer 0.1.0

Efficient abstraction for memory buffers aligned to 16 bytes (u128) with both owned and shared variants
Documentation
  • Coverage
  • 50%
    12 out of 24 items documented0 out of 23 items with examples
  • Size
  • Source code size: 27.43 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.64 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • nazar-pc/abundance
    23 6 2
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • nazar-pc

Efficient abstraction for memory buffers aligned to 16 bytes (u128) with both owned and shared variants.

[OwnedAlignedBuffer] represents a memory location aligned to 16 bytes that can be modified.

[SharedAlignedBuffer] can't be modified but supports cheap reference-counting clones (like Arc, but much more efficient).

Does not require a standard library (no_std) but does require allocator and atomics.