This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub fn format( | |
writer: anytype, | |
comptime fmt: []const u8, | |
args: anytype, | |
) !void { | |
const ArgsType = @TypeOf(args); | |
const args_type_info = @typeInfo(ArgsType); | |
_checkPreconditions(...); |