Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

beginTuple

Creates a Tuple for writing ZON tuples field by field.

Serializer.beginTuple
pub fn beginTuple(self: *Serializer, options: ContainerOptions) Error!Tuple

File

lib/std/zon/Serializer.zig:415

Code

pub fn beginTuple(self: *Serializer, options: ContainerOptions) Error!Tuple {
    return Tuple.begin(self, options);
}