Expand description

A collection of utility code that use unsafe blocks.

Code in this collection is not unsafe by nature. They are here to avoid using more nightly Rust features and/or due to lack of 3rd party crates offer a similar functionality.

Modules§

  • Simple bounded ring buffers with FIFO queue.
  • A hasher that do hashing by not doing it. This hasher does not contain unsafe Rust code but it’s not suitable to be use for general purpose. Panic at runtime for key types that can’t be used.
  • Collection for uninit slices.