Function skip [src]
Prototype
pub fn skip(self: *ArgIteratorPosix) bool Parameters
self: *ArgIteratorPosix Source
pub fn skip(self: *ArgIteratorPosix) bool {
if (self.index == self.count) return false;
self.index += 1;
return true;
}