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.

len

Iterate over all nodes, returning the count.

This operation is O(N). Consider tracking the length separately rather than computing it.

SinglyLinkedList.len
pub fn len(list: SinglyLinkedList) usize

File

lib/std/SinglyLinkedList.zig:113

Code

pub fn len(list: SinglyLinkedList) usize {
    if (list.first) |n| {
        return 1 + n.countChildren();
    } else {
        return 0;
    }
}