Function debugSubrange [src]
Prototype
pub fn debugSubrange( self: *Builder, lower_bound: Metadata, count: Metadata, ) Allocator.Error!Metadata Parameters
self: *Builderlower_bound: Metadatacount: Metadata Source
pub fn debugSubrange(
self: *Builder,
lower_bound: Metadata,
count: Metadata,
) Allocator.Error!Metadata {
try self.ensureUnusedMetadataCapacity(1, Metadata.Subrange, 0);
return self.debugSubrangeAssumeCapacity(lower_bound, count);
}