DoxigAlpha

Function parameters

Parameters

#
w:*Writer

Type definitions in this namespace

Types

#

Functions in this namespace

Functions

#

= 16

Values

#

Source

Implementation

#
pub fn format(p: Prefixed, w: *Writer) Writer.Error!void {
    switch (p.memory_access_kind) {
        .normal => return,
        .@"volatile" => {
            var vecs: [2][]const u8 = .{ p.prefix, "volatile" };
            return w.writeVecAll(&vecs);
        },
    }
}