MLambda.Genesis.Parser
0.2.6
See the version list below for details.
dotnet add package MLambda.Genesis.Parser --version 0.2.6
NuGet\Install-Package MLambda.Genesis.Parser -Version 0.2.6
<PackageReference Include="MLambda.Genesis.Parser" Version="0.2.6" />
<PackageVersion Include="MLambda.Genesis.Parser" Version="0.2.6" />
<PackageReference Include="MLambda.Genesis.Parser" />
paket add MLambda.Genesis.Parser --version 0.2.6
#r "nuget: MLambda.Genesis.Parser, 0.2.6"
#:package MLambda.Genesis.Parser@0.2.6
#addin nuget:?package=MLambda.Genesis.Parser&version=0.2.6
#tool nuget:?package=MLambda.Genesis.Parser&version=0.2.6
MLambda.Genesis
A .NET 10 meta-language workbench for building domain-specific languages through combinatorial parsing, schema-driven AST generation, and symbolic algebra.
Packages
| Package | Description |
|---|---|
MLambda.Genesis.Parser |
Monadic parser combinator library with full LINQ support |
MLambda.Genesis.AST |
AST node hierarchy, compilation pipeline, and visitor infrastructure |
MLambda.Genesis.EBNF |
EBNF grammar parser and compiler to executable combinators |
MLambda.Genesis.ASDL |
ASDL schema parser and C# AST type emitter |
MLambda.Genesis.Generator |
EBNF + ASDL → C# generator (dotnet tool: mlambda-gen) |
MLambda.Lang.Math |
Mathematical expression language: parser, printer, evaluator |
MLambda.Genesis.Algebra |
Symbolic algebra: differentiation, integration, expansion, solving |
MLambda.Lang.CAS |
CAS rule DSL compiler producing IRewriteSystem implementations |
MLambda.Lang.SQL |
SQL SELECT language front-end with analyser and code generator |
Documentation
Full documentation: https://genesis.mlambda.net
Quick Start
dotnet add package MLambda.Genesis.Parser
dotnet add package MLambda.Genesis.Algebra
using MLambda.Lang.Math;
using MLambda.Genesis.Algebra;
var expr = MathParser.Parse("x^2 + 2*x + 1");
var deriv = Differentiator.D(expr, new Sym("x"));
Console.WriteLine(MathPrinter.Print(deriv)); // 2 * x + 2
License
MIT — see LICENSE.
| Product | Versions 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. |
-
net10.0
- No dependencies.
NuGet packages (9)
Showing the top 5 NuGet packages that depend on MLambda.Genesis.Parser:
| Package | Downloads |
|---|---|
|
MLambda.Genesis.AST
AST node hierarchy, IR, compilation pipeline and visitor infrastructure for building language processors on top of MLambda.Genesis.Parser. |
|
|
MLambda.Lang.Math
Mathematical expression language for .NET: recursive-descent parser, operator-precedence printer, symbolic AST (Num, Sym, Add, Mul, Pow, Neg, FuncCall) and numeric evaluator. |
|
|
MLambda.Genesis.EBNF
EBNF grammar parser and compiler. Translates ISO 14977 EBNF source into an executable dictionary of parser combinators, with lazy knot-tying for mutual recursion. |
|
|
MLambda.Lang.CAS
CAS rule DSL compiler: write symbolic rewrite rules in a typed pattern-matching language and compile them to C# IRewriteSystem implementations with AC-matching support. |
|
|
MLambda.Genesis.ASDL
Abstract Syntax Description Language (ASDL) parser and C# record emitter. Declare AST type hierarchies in a concise schema; generate typed record classes automatically. |
GitHub repositories
This package is not used by any popular GitHub repositories.