pub fn is_sequence(value: &str) -> boolExpand description
Check if a string represents a multi-value sequence (contains spaces).
ยงExamples
use start_command::sequence_parser::is_sequence;
assert!(is_sequence("screen ssh docker"));
assert!(!is_sequence("docker"));
assert!(!is_sequence(""));