Invokes detectable illegal behavior when the provided array is not aligned to the provided amount.
pub fn assertAligned(ptr: anytype, comptime alignment: std.mem.Alignment) void
pub fn assertAligned(ptr: anytype, comptime alignment: std.mem.Alignment) void {
const aligned_ptr: *align(alignment.toByteUnits()) const anyopaque = @ptrCast(@alignCast(ptr));
_ = aligned_ptr;
}