154
155
156
157
158
159
160
161
162
163
164
pub fn tag<T: Clone + InputLength, I: InputTake + Compare<T>>(
tag: T
) -> impl FnMut(I) -> NomRes<I, I, (), !> {
uni_err_no_fail(nom::bytes::complete::tag(tag))
}
pub fn take<I: InputIter + InputTake>(
count: usize
) -> impl FnMut(I) -> NomRes<I, I, (), !> {
uni_err_no_fail(nom::bytes::complete::take(count))
}