Function isAlignedGeneric [src]
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;
}