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.

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

File

lib/std/DoublyLinkedList.zig:151

Code

pub fn len(list: DoublyLinkedList) usize {
    var count: usize = 0;
    var it: ?*const Node = list.first;
    while (it) |n| : (it = n.next) count += 1;
    return count;
}