Info
Version: | 1.0.1 |
Author(s): | DCastro |
Last Update: | Tuesday, May 27, 2014 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/dcastro/Sequences |
NuGet Url: | https://www.nuget.org/packages/Sequences |
Install
Install-Package Sequences
dotnet add package Sequences
paket add Sequences
Sequences Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
A Sequence<T> is an immutable lazy list whose elements are only evaluated when they are needed.
A sequence is composed by a head (the first element) and a lazily-evaluated tail (the remaining elements).
The fact that the tail is lazily-evaluated, makes it easy to represent infinite series or sets.
See the project's page for examples: https://github.com/dcastro/Sequences.