Closed GoogleCodeExporter closed 9 years ago
Set review issue status to: Started
Original comment by azizatif
on 23 Jan 2010 at 11:13
Now migrated to Hg and available in clone:
http://code.google.com/r/azizatif-morelinq-evenmore/
This clone is ready to be cloned :O) for further review. It also has the
main/default branch already merged in to bring it up to date.
Original comment by azizatif
on 25 May 2012 at 11:38
This can be implemented with Pairwise and TakeWhile, e.g.:
Enumerable.Range(1, 10)
.Select(n => n * n )
.Pairwise((a, b) => b - a)
.TakeWhile(n => n < 10)
Original comment by azizatif
on 9 Jun 2012 at 2:52
Original issue reported on code.google.com by
ambientl...@gmail.com
on 23 Jan 2010 at 6:18