aboutsummaryrefslogtreecommitdiff
path: root/lib/std/fmt.zig
AgeCommit message (Expand)Author
2020-12-13std: Fix formatting of type valuesLemonBoy
2020-11-20std: Implement named arguments & runtime width/precisionLemonBoy
2020-11-20std: Rewrite the fmt parserLemonBoy
2020-11-19Merge pull request #6390 from LemonBoy/reboot-3970Andrew Kelley
2020-11-19Nicer code for the error code pathLemonBoy
2020-11-19Add builtin.Signedness, use it instead of is_signedTadeo Kondrak
2020-11-05Address review commentsLemonBoy
2020-11-05Fix typo in documentationLemonBoy
2020-11-05Make std.formatBuf UTF-8 awareLemonBoy
2020-11-05Clean up the unicode codepoint formatter a bitLemonBoy
2020-11-05Update the API and add add error-recovery pathLemonBoy
2020-11-05Add 'u' specifier to std.formatdata-man
2020-11-02std: Make parseInt/parseUnsigned detect the radixLemonBoy
2020-11-02std/ascii: add spaces arrayIsaac Freund
2020-11-01Merge pull request #6888 from jcmoyer/issues/6874Andrew Kelley
2020-11-01Make std.fmt.bufPrintIntToSlice publicJakub Konka
2020-10-30Add test for null terminated slices with embedded null bytesJ.C. Moyer
2020-10-30Update doc comments to reflect current behaviorJ.C. Moyer
2020-10-26Format null type in std.fmtdata-man
2020-10-17Merge pull request #6394 from Vexu/fmtAndrew Kelley
2020-10-17std: remove renderStringLiteral in favor of std.fmt specifierVexu
2020-10-17Make std.meta.Int accept a signedness parameterJan Prudil
2020-10-17std.fmt: add specifier for Zig identifiersVexu
2020-10-15std/fmt: add bufPrintZ()Isaac Freund
2020-10-15std/fmt: rename allocPrint0() to allocPrintZ()Isaac Freund
2020-10-14force comptime on comptimePrintRocknest
2020-10-07std.fmt.comptimePrint: Properly null-terminate result and add testTadeo Kondrak
2020-10-06std.fmt.comptimePrint: Return null terminated stringTadeo Kondrak
2020-10-02std.fmt.comptimePrint: bufPrint cannot return an errorAlexandros Naskos
2020-09-25std.fmt: add comptimePrintTadeo Kondrak
2020-09-17std: Respect user-specified alignment when formatting intsLemonBoy
2020-09-16std: Fix {*} printing of non-pointer typesLemonBoy
2020-09-07Use less inefficient method of replacing TypeInfo.UnionField.enum_fieldTadeo Kondrak
2020-09-07Update standard library for removal of TypeInfo.UnionField.enum_fieldTadeo Kondrak
2020-09-05Merge pull request #6246 from Vexu/fieldVeikka Tuominen
2020-09-04document how to escape curly braces in fmt.formatyettinmoor
2020-09-03update uses of deprecated type field accessVexu
2020-09-02std: add fmt option to escape non-printable charactersdaurnimator
2020-08-20add license header to all std lib filesAndrew Kelley
2020-08-09Uses getWritten instead of .pos + slicingFelix Queißner
2020-08-09Makes formatFloatValue not return error.NoSpaceLeft anymore.Felix (xq) Queißner
2020-08-09Fixes double alignmentFelix (xq) Queißner
2020-08-05Revert "std.fmt.format: small optimization to avoid runtime bloat"Andrew Kelley
2020-07-29std.fmt.format: small optimization to avoid runtime bloatAndrew Kelley
2020-07-14Added octal formatting fo `fmt` functions. (#5867)~nue
2020-07-12update compile error tests and some doc commentsVexu
2020-07-11run zig fmt on std lib and self hostedVexu
2020-07-05Rewrite std.fmt.parseIntAlluet
2020-07-05Fix issue 5757: increase branch quota for formatting enumsJonathan Marler
2020-06-20Use writer in std.fmtdata-man