fn collect_fn_arguments(
    input_chars: &mut Peekable<Chars<'_>>,
) -> Result<Vec<FolToken>, String>
Expand description

Retrieve the arguments of a function, process everything from “(” up to “)”. Function name is consumed by caller.