DoxigAlpha

at

Function parameters

Parameters

#
self:anytype
i:usize

This is a stack data structure where pointers to indexes have the same lifetime as the data structure

Functions

#
SegmentedList
This is a stack data structure where pointers to indexes have the same lifetime as the data structure

Source

Implementation

#
pub fn at(self: anytype, i: usize) AtType(@TypeOf(self)) {
    assert(i < self.len);
    return self.uncheckedAt(i);
}