Function skip [src]

Parse past 1 argument without capturing it. Returns true if skipped an arg, false if we are at the end.

Prototype

pub fn skip(self: *ArgIterator) bool

Parameters

self: *ArgIterator

Source

pub fn skip(self: *ArgIterator) bool { return self.inner.skip(); }