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.

concat

Copies each T from slices into a new slice that exactly holds all the elements.

mem.concat
pub fn concat(allocator: Allocator, comptime T: type, slices: []const []const T) Allocator.Error![]T

File

lib/std/mem.zig:3577

Code

pub fn concat(allocator: Allocator, comptime T: type, slices: []const []const T) Allocator.Error![]T {
    return concatMaybeSentinel(allocator, T, slices, null);
}