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