mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
Merge e3f17b5ca5 into 9082b004b6
This commit is contained in:
commit
72c2f72cfb
1 changed files with 2 additions and 1 deletions
|
|
@ -587,7 +587,8 @@ pub fn writeAll(w: *Writer, bytes: []const u8) Error!void {
|
||||||
/// - `!`: output error union value as either the unwrapped value, or the formatted error value; may be followed by a format specifier for the underlying value.
|
/// - `!`: output error union value as either the unwrapped value, or the formatted error value; may be followed by a format specifier for the underlying value.
|
||||||
/// - `*`: output the address of the value instead of the value itself.
|
/// - `*`: output the address of the value instead of the value itself.
|
||||||
/// - `any`: output a value of any type using its default format.
|
/// - `any`: output a value of any type using its default format.
|
||||||
/// - `f`: delegates to a method on the type named "format" with the signature `fn (*Writer, args: anytype) Writer.Error!void`.
|
/// - `f`: delegates to a method on the type named "format" with the signature `fn (self, *Writer) Writer.Error!void`.
|
||||||
|
/// See also `std.fmt.Alt`.
|
||||||
///
|
///
|
||||||
/// A user type may be a `struct`, `vector`, `union` or `enum` type.
|
/// A user type may be a `struct`, `vector`, `union` or `enum` type.
|
||||||
///
|
///
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue