1 2 3 4
fn zeroInit(comptime T: type) T { var bytes = [_]u8{0} ** @sizeOf(T); return mem.bytesToValue(T, bytes); }