Returns an iterator over all parameters in the command line as string slices. This is similar to `iter()` but yields `&str` directly instead of `Parameter`, which can be more convenient when you just need the string representation.
(&self)
| 112 | /// This is similar to `iter()` but yields `&str` directly instead of `Parameter`, |
| 113 | /// which can be more convenient when you just need the string representation. |
| 114 | pub fn iter_str(&self) -> CmdlineIterStr<'_> { |
| 115 | CmdlineIterStr(self.0.iter_bytes()) |
| 116 | } |
| 117 | |
| 118 | /// Locate a kernel argument with the given key name. |
| 119 | /// |
no test coverage detected