Function iterateAssumeFirstIteration [src]

Like iterate, but will not reset the directory cursor before the first iteration. This should only be used in cases where it is known that the Dir has not had its cursor modified yet (e.g. it was just opened).

Prototype

pub fn iterateAssumeFirstIteration(self: Dir) Iterator

Parameters

self: Dir

Source

pub fn iterateAssumeFirstIteration(self: Dir) Iterator { return self.iterateImpl(false); }