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.
Zig › std/ › mem/ › Allocator.zig › allocAdvancedWithRetAddr
allocAdvancedWithRetAddr
Allocator.allocAdvancedWithRetAddr
pub inline fn allocAdvancedWithRetAddr (
self : Allocator ,
comptime T : type ,
comptime alignment : ?Alignment ,
n : usize ,
return_address : usize ,
) Error ![]align (if (alignment ) |a | a .toByteUnits () else @alignOf (T )) T
File
Code
pub inline fn allocAdvancedWithRetAddr (
self : Allocator ,
comptime T : type ,
comptime alignment : ?Alignment ,
n : usize ,
return_address : usize ,
) Error ![]align (if (alignment ) |a | a .toByteUnits () else @alignOf (T )) T {
const a : Alignment = alignment orelse comptime .of (T );
const ptr : [*]align (a .toByteUnits ()) T = @ptrCast (try self .allocWithSizeAndAlignment (@sizeOf (T ), a , n , return_address ));
return ptr [0 ..n ];
}