Add a macro for calling parsers that take in the affiliated keywords.

This commit is contained in:
Tom Alexander
2023-10-12 16:06:59 -04:00
parent a6f36ba679
commit 6ca4dc8ffc
3 changed files with 40 additions and 1 deletions

View File

@@ -91,7 +91,7 @@ pub(crate) fn new_plain_list<'b, 'g, 'r, 's, AK>(
input: OrgSource<'s>,
) -> Res<OrgSource<'s>, PlainList<'s>>
where
AK: Iterator<Item = Keyword<'s>>,
AK: IntoIterator<Item = Keyword<'s>>,
{
todo!()
}