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.

typeContainsSlice

auto_hash.typeContainsSlice
inline fn typeContainsSlice(comptime K: type) bool

File

lib/std/hash/auto_hash.zig:164

Code

inline fn typeContainsSlice(comptime K: type) bool {
    return switch (@typeInfo(K)) {
        .pointer => |info| info.size == .slice,

        inline .@"struct", .@"union" => |info| {
            inline for (info.field_types) |field_type| {
                if (typeContainsSlice(field_type)) {
                    return true;
                }
            }
            return false;
        },

        else => false,
    };
}