Function isAlignedGeneric [src]

Prototype

pub fn isAlignedGeneric(comptime T: type, addr: T, alignment: T) bool

Parameters

T: typeaddr: Talignment: T

Source

pub fn isAlignedGeneric(comptime T: type, addr: T, alignment: T) bool { return alignBackward(T, addr, alignment) == addr; }