1
2
3
4
5
6
7
#![allow(unused_unsafe)]

//! This crate is a collection of low level tricks designed to make unsafe code more readable and less error prone.

pub mod shared_box;
pub mod assume;
pub mod pointers;