Function uwuifier::round_up16[][src]

pub fn round_up16(n: usize) -> usize

round up n to the next multiple of 16. useful for allocating buffers

example:

use uwuifier::round_up16;
assert_eq!(round_up16(17), 32);