adana-cache-command 0.18.6

namespaces aliases for command lines & basic scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use nom::{
    branch::alt,
    bytes::complete::{
        tag, tag_no_case, take_till1, take_until, take_until1, take_while,
        take_while1,
    },
    character::complete::{multispace0, multispace1, space1},
    combinator::{cut, map, opt, rest, verify},
    multi::{many0, separated_list0},
    sequence::{delimited, pair, preceded, separated_pair, terminated},
    IResult, Parser,
};
pub type Res<'a, T> = IResult<&'a str, T>;