Home
last modified time | relevance | path

Searched refs:iter (Results 1 – 4 of 4) sorted by relevance

/NovaShell/src/shell/
H A Dmod.rs108 if !command_bytes.iter().all(|&byte| byte == b' ') { in exec()
265 if buf.len() == 0 || buf.iter().all(|byte| *byte == b' ') { in readline()
269 let iter = str.chars(); in readline() localVariable
273 for ch in iter { in readline()
397 for (cmd, _) in BuildInCmd::map().as_ref().unwrap().lock().unwrap().iter() { in complete_command()
H A Dprinter.rs56 buf.splice(self.cursor..self.cursor, bytes.iter().cloned()); in insert()
/NovaShell/src/shell/command/
H A Dhelp.rs19 for (name, func) in map.iter() { in help()
/NovaShell/src/
H A Dparser.rs386 for cmd in self.commands.iter() { in execute()