fn isAligned(addr: usize, alignment: usize) bool

Given an address and an alignment, return true if the address is a multiple of the alignment The alignment must be a power of 2 and greater than 0.

Parameters

addr: usize,
alignment: usize,