Skip to content

Instantly share code, notes, and snippets.

@jagregory
Created October 21, 2008 23:52
Show Gist options
  • Select an option

  • Save jagregory/18490 to your computer and use it in GitHub Desktop.

Select an option

Save jagregory/18490 to your computer and use it in GitHub Desktop.
protected IList<T> ParseList<T>(string text, Func<GitNumstatParser, Rule<char>> ruleFetcher)
{
return new List<T>(Grammars.ParseWith(text, ruleFetcher).ToIEnumerable<T>());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment