parmacl 0.1.0

A command line text parser. Parses a full command line string which has not already been pre-parsed into arguments by a shell.
Documentation
pub(crate) enum EnvChar {
    Separator,
    Unicode(char),
}

impl EnvChar {
    pub fn try_get_unicode_non_whitespace(&self) -> Option<char> {
        match self {
            EnvChar::Separator => None,
            EnvChar::Unicode(char) => Some(*char),
        }
    }
}