Function nativeToBig [src]

Converts an integer which has host endianness to big endian.

Prototype

pub fn nativeToBig(comptime T: type, x: T) T

Parameters

T: typex: T

Source

pub fn nativeToBig(comptime T: type, x: T) T { return switch (native_endian) { .little => @byteSwap(x), .big => x, }; }