Skip to content

Instantly share code, notes, and snippets.

@dvdsgl
Created January 2, 2011 17:38
Show Gist options
  • Save dvdsgl/762667 to your computer and use it in GitHub Desktop.
Save dvdsgl/762667 to your computer and use it in GitHub Desktop.
private static IEnumerable<TSource> SkipWhileImpl<TSource>(
IEnumerable<TSource> source,
Func<TSource, bool> predicate)
{
return SkipWhileImpl (source, (element, index) => predicate (element));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment