Urg hrtb hell again.

This commit is contained in:
Tom Alexander
2022-11-26 19:39:00 -05:00
parent 45904044e3
commit d3b49a6835

View File

@@ -35,7 +35,11 @@ use nom::IResult;
use tracing::instrument; use tracing::instrument;
use tracing::trace; use tracing::trace;
fn context_many_till<'r, M, T>( fn context_many_till<
'r,
M: for<'s> Fn(&'s str) -> IResult<&'s str, TextElement<'s>, VerboseError<&'s str>>,
T: for<'s> Fn(&'s str) -> IResult<&'s str, &'s str, VerboseError<&'s str>>,
>(
context: &'r OrgModeContextNode<'r>, context: &'r OrgModeContextNode<'r>,
many_matcher: M, many_matcher: M,
till_matcher: T, till_matcher: T,