fn writeIntNative(comptime T: type, buf: *[@intCast(u16, (@typeInfo(T).Int.bits + 7) / 8)]u8, value: T) void
[src]
Writes an integer to memory, storing it in twos-complement. This function always succeeds, has defined behavior for all inputs, and accepts any integer bit width. This function stores in native endian, which means it is implemented as a simple memory store.