Returns an iterator over all parameters in the command line. Properly handles quoted values containing whitespace and splits on unquoted whitespace characters. Parameters are parsed as either key-only switches or key=value pairs.
(&'a self)
| 125 | /// unquoted whitespace characters. Parameters are parsed as either |
| 126 | /// key-only switches or key=value pairs. |
| 127 | pub fn iter(&'a self) -> CmdlineIter<'a> { |
| 128 | CmdlineIter(self.iter_bytes()) |
| 129 | } |
| 130 | |
| 131 | /// Returns an iterator over all parameters in the command line as byte slices. |
| 132 | /// |