Lines Matching refs:first
9 /// Gets an object from the first parser,
13 /// * `first` The first parser to apply.
30 mut first: F,
38 let (input, o1) = first.parse(input)?;
43 /// Matches an object from the first parser and discards it,
47 /// * `first` The opening parser.
64 mut first: F,
72 let (input, _) = first.parse(input)?;
77 /// Gets an object from the first parser,
81 /// * `first` The first parser to apply.
98 mut first: F,
106 let (input, o1) = first.parse(input)?;
111 /// Gets an object from the first parser,
116 /// * `first` The first parser to apply.
134 mut first: F,
144 let (input, o1) = first.parse(input)?;
150 /// Matches an object from the first parser and discards it,
155 /// * `first` The first parser to apply and discard.
173 mut first: F,
183 let (input, _) = first.parse(input)?;