feature. See also
. The project being documented here (as the example) is the Zig library itself.
Builder.debugVectorTypeAssumeCapacity
fn debugVectorTypeAssumeCapacity(
self: *Builder,
name: ?Metadata.String,
file: ?Metadata,
scope: ?Metadata,
line: u32,
underlying_type: ?Metadata,
size_in_bits: u64,
align_in_bits: u64,
fields_tuple: ?Metadata,
) Metadata
File
Code
fn debugVectorTypeAssumeCapacity(
self: *Builder,
name: ?Metadata.String,
file: ?Metadata,
scope: ?Metadata,
line: u32,
underlying_type: ?Metadata,
size_in_bits: u64,
align_in_bits: u64,
fields_tuple: ?Metadata,
) Metadata {
assert(!self.strip);
return self.debugCompositeTypeAssumeCapacity(
.composite_vector_type,
name,
file,
scope,
line,
underlying_type,
size_in_bits,
align_in_bits,
fields_tuple,
);
}