1
2
3
4
5
6
7
#![feature(rc_raw)]

pub mod tagged_ptr;
pub mod packable3;

const BITSIZE: usize = 3;
const BITMASK: usize = (1 << BITSIZE) - 1;