Prepare for merging into Organic.

This commit is contained in:
Tom Alexander
2023-08-22 22:24:35 -04:00
parent edff1e089d
commit 5a7f34b63e
4 changed files with 1 additions and 52 deletions

View File

@@ -1,15 +1,6 @@
use std::ops::RangeBounds;
use nom::{bytes::complete::tag, Compare, InputTake, Slice};
fn main() {
let input = "this is my test input".to_owned();
let wrapped_input = WrappedInput::new(input.as_str());
let output = tag::<_, _, (_, nom::error::ErrorKind)>("this")(wrapped_input).unwrap();
println!("{:#?}", output);
}
use nom::{Compare, InputTake, Slice};
#[derive(Debug)]
struct WrappedInput<'s> {