values

Function values 

Source
fn values<T>(input: &mut &str) -> ModalResult<Vec<T>>
where T: FromStr + Display, T::Err: Display,
Expand description

Parses a list of values from the input.

Repeats value() until the next section header (%...%) or the end of the file.

ยงErrors

Returns an error if a value cannot be parsed into T or if the section layout does not match expectations.