1 2 3
pub fn round_up_to_boundary(address: usize, boundary: usize) -> usize { boundary * address.div_ceil(boundary) }