Function isAlignedGeneric [src]
Generic version of isAligned that works with any integer type.
Returns true if addr is aligned to the given alignment.
Alignment must be a power of 2 and greater than 0.
Prototype
pub fn isAlignedGeneric(comptime T: type, addr: T, alignment: T) bool
Parameters
T: type
addr: T
alignment: T
Source
pub fn isAlignedGeneric(comptime T: type, addr: T, alignment: T) bool {
return alignBackward(T, addr, alignment) == addr;
}