Function next [src]

Returns the next argument and advances the iterator. Returns null if at the end of the command-line string. The iterator owns the returned slice. The result is encoded as WTF-8.

Prototype

pub fn next(self: *ArgIteratorWindows) ?[:0]const u8

Parameters

self: *ArgIteratorWindows

Source

pub fn next(self: *ArgIteratorWindows) ?[:0]const u8 { return self.nextWithStrategy(next_strategy); }