| Review | 
|---|
| 🌐 Global Status | 
The IQueryable port alternative of LinqDataCalc.
Most parts of the re-written source are meant to provide a more fluent linq-like syntax alternative for some methods in the original LinqDataCalc with some examples.
Previous/New methods Ported to IQueryable syntax displayed in table below:
| Method | Implemented As | Usage | 
|---|---|---|
| AsNumberTuples() | FilterNumerics() FilterNumerics(predicate) | example only of funct. filtered numerics, use 'Where', 'Select' clauses instead | 
| OddOrEven() ➡️ | CollEvenLength() | size-specific collection filters | 
| HammingDist() ➡️ | WhereDist() | hamming-distance collection search using 'Where' clause | 
| New Methods | FreqOccur() FreqObjsOccur() | filtering based on object frequency | 
| ToIntMatrix() | SelectIntMatrix() SelectIntMatrix() | Large Integer string-to-matrix representations | 
Online project located at nuget gallery.
Further usage and instructions in the online documentation site.