Extension methods on crack.
Go to file
Oliver Booth 6020a6e602
Merge pull request #85 from oliverbooth/release/4.0.0
4.0.0 major release
2024-06-12 14:11:23 +01:00
.config 3.0.0 Update (#43) 2022-04-30 14:13:16 +01:00
.github ci: drop net7.0 target for tests 2024-06-12 03:46:46 +01:00
X10D feat: add EnqueueAll/DequeueAll, PushAll/PopAll for Queue and Stack 2024-06-12 14:06:54 +01:00
X10D.Hosting chore!: drop net7.0 target (#90) 2024-06-12 03:45:51 +01:00
X10D.Tests feat: add EnqueueAll/DequeueAll, PushAll/PopAll for Queue and Stack 2024-06-12 14:06:54 +01:00
docfx_project docs: update 3.x.x migration docs 2024-02-17 17:54:06 +00:00
tools chore!: drop net7.0 target (#90) 2024-06-12 03:45:51 +01:00
.editorconfig Suppress CA1805 in .editorconfig 2022-11-29 17:17:28 +00:00
.gitignore #30 Use .NET Core gitignore 2021-03-03 14:32:00 +00:00
CHANGELOG.md feat: add EnqueueAll/DequeueAll, PushAll/PopAll for Queue and Stack 2024-06-12 14:06:54 +01:00
CONTRIBUTING.md chore: favour use of c# 12 2024-06-12 11:50:48 +01:00
Directory.Build.props chore: favour use of c# 12 2024-06-12 11:50:48 +01:00
LICENSE.md [ci skip] docs: update license year 2024-02-17 15:30:02 +00:00
README.md Merge branch 'main' into release/4.0.0 2024-02-12 10:21:06 +00:00
X10D.sln Merge branch 'main' into release/4.0.0 2024-02-12 10:21:06 +00:00
_config.yml Set theme jekyll-theme-slate 2020-04-26 14:23:54 +01:00
branding_Banner.png [ci skip] docs(style): update branding 2023-03-31 22:19:41 +01:00
branding_Icon.png style: update branding 2023-03-31 22:22:52 +01:00
branding_Social.png [ci skip] style: add social embed branding export 2023-03-31 22:30:25 +01:00
codecov.yml ci: ignore compile-generated file from coverage 2024-06-12 03:54:22 +01:00
global.json build: target .NET 8 (#88) 2023-11-14 16:49:53 +00:00

README.md

GitHub Workflow Status GitHub Issues Coverage NuGet Downloads Stable Version Nightly Version MIT License

About

X10D (pronounced extend), is a .NET package that provides extension methods for numerous types. The purpose of this library is to simplify a codebase by reducing the need for repeated code when performing common operations. Simplify your codebase. Take advantage of .NET. Use extension methods.

(I'm also dogfooding this library, so there's that.)

What are extension methods?

Extension methods are a clever .NET feature that augment existing types with new functionality. They are defined as static methods in a static class, and are called as if they were instance methods on the type they are extending. Take, for example, the following code:

public static class Program
{
    public static void Main()
    {
        string str = "Hello, world!";
        Console.WriteLine(str.Reverse());
    }
}

public static class StringExtensions
{
    public static string Reverse(this string str)
    {
        char[] chars = str.ToCharArray();
        Array.Reverse(chars);
        return new string(chars);
    }
}

This will print !dlrow ,olleH to the console. The Reverse method is defined in the StringExtensions class, yet is called as if it were an instance method on the str variable, even though it's not.

Why use extension methods?

Extension methods were introduced when LINQ was added to .NET. LINQ is a set of extension methods that provide a way to query, filter, and transform data. If you were to access LINQ's methods statically, you would have to write code like this:

public static class Program
{
    public static void Main()
    {
        int[] numbers = { 1, 2, 3, 4, 5 };
        IEnumerable<int> evenNumbers = Enumerable.Where(numbers, x => x % 2 == 0);
        IEnumerable<int> doubledNumbers = Enumerable.Select(evenNumbers, x => x * 2);
        int sum = Enumerable.Sum(doubledNumbers);
        Console.WriteLine(sum);
    }
}

And if you wanted to one-line this, you'd have to write this:

public static class Program
{
    public static void Main()
    {
        int[] numbers = { 1, 2, 3, 4, 5 };
        Console.WriteLine(Enumerable.Sum(Enumerable.Select(Enumerable.Where(numbers, x => x % 2 == 0), x => x * 2)));
    }
}

This is a lot of code to write, and it's not very readable. The nested method calls make it incredibly difficult to follow. However, because LINQ is implemented as extension methods, you can write the following code instead:

public static class Program
{
    public static void Main()
    {
        int[] numbers = { 1, 2, 3, 4, 5 };
        Console.WriteLine(numbers.Where(x => x % 2 == 0).Select(x => x * 2).Sum());
    }
}

Because the methods are called as if they were instance methods on IEnumerable<T>, they can be chained together, making the code much more readable.

X10D aims to provide these same benefits as LINQ, but for dozens of other types and for countless other use cases. See the documentation for a complete breakdown of what's available.

Installation

NuGet installation

Install-Package X10D -Version 4.0.0

Manual installation

Download the latest release from this repository and adding a direct assembly reference for your chosen platform.

Documentation

Documentation and the API reference is available at https://oliverbooth.github.io/X10D/index.html. I'm sorry this took so long to get up and running. DocFX will be the death of me.

Contributing

Contributions are welcome. See CONTRIBUTING.md.

License

X10D is released under the MIT License. See here for more details.