Rulealize.Plugin.Sequence 1.4.0

dotnet add package Rulealize.Plugin.Sequence --version 1.4.0
                    
NuGet\Install-Package Rulealize.Plugin.Sequence -Version 1.4.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Rulealize.Plugin.Sequence" Version="1.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rulealize.Plugin.Sequence" Version="1.4.0" />
                    
Directory.Packages.props
<PackageReference Include="Rulealize.Plugin.Sequence" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rulealize.Plugin.Sequence --version 1.4.0
                    
#r "nuget: Rulealize.Plugin.Sequence, 1.4.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Rulealize.Plugin.Sequence@1.4.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rulealize.Plugin.Sequence&version=1.4.0
                    
Install as a Cake Addin
#tool nuget:?package=Rulealize.Plugin.Sequence&version=1.4.0
                    
Install as a Cake Tool

Rulealize.Plugin.Sequence

Generation, transformation and aggregation over Rulealize sequences.

Plugin id Rulealize.Plugin.Sequence
Namespace seq
Reserved prefix none
Depends on Rulealize.Abstraction
Specification doc/specification.md

seq.empty, of, range, any, count, sum, elementAt, takeWhile, where, select, selectMany, concat, take, skip, replaceAt.

This plugin does not know where a sequence came from. Reversi feeds it rays and coordinate lists produced by a grid plugin it has never heard of, and that works because Sequence is a kind in the shared value model — not because either plugin references the other.

It also introduces bindings without having any vocabulary for reading one: the name given by as is read by bind.local and its @ shorthand, in a plugin this one does not reference. The scope machinery belongs to Rulealize.Abstraction, which both depend on.

Sequences must be re-enumerable, and that is the requirement to know before reading the specification. Enumerating one sequence value twice must yield the same elements; laziness is fine, a single-use iterator is not. Reversi binds a ray once and consumes it from two places — seq.takeWhile and then seq.elementAt — so a single-use implementation would silently return nothing the second time and the capture rule would quietly stop working. Recompute on each enumeration or buffer on the first; either is fine.

That requirement is also what makes this the most obvious candidate for replacement in the standard set. Eager or lazy, buffered or recomputed, sequential or parallel: all of it is this implementation's business, so long as re-enumerability and sequence order hold.

Building

dotnet build. Rulealize.Abstraction restores from nuget.org like any other package, so this repository builds on its own.

License

Apache-2.0.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.4.0 48 9/13/2026
1.3.1 113 9/5/2026
1.3.0 198 8/22/2026
1.2.0 260 8/11/2026