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.

hashArray

Helper function to hash a set of contiguous objects, from an array or slice.

auto_hash.hashArray
pub fn hashArray(hasher: anytype, key: anytype, comptime strat: HashStrategy) void

File

lib/std/hash/auto_hash.zig:56

Code

pub fn hashArray(hasher: anytype, key: anytype, comptime strat: HashStrategy) void {
    for (key) |element| {
        hash(hasher, element, strat);
    }
}