Byteology.GuardClauses 1.2.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Byteology.GuardClauses --version 1.2.1
NuGet\Install-Package Byteology.GuardClauses -Version 1.2.1
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="Byteology.GuardClauses" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Byteology.GuardClauses --version 1.2.1
#r "nuget: Byteology.GuardClauses, 1.2.1"
#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.
// Install Byteology.GuardClauses as a Cake Addin
#addin nuget:?package=Byteology.GuardClauses&version=1.2.1

// Install Byteology.GuardClauses as a Cake Tool
#tool nuget:?package=Byteology.GuardClauses&version=1.2.1

Nuget Code Coverage

Security Rating Reliability Rating Maintainability Rating

Byteology's Guard Clauses

A simple extensible package containing generic guard clause extensions.

A guard clause is a software pattern that simplifies complex functions by "failing fast", checking for invalid inputs up front and immediately failing if any are found.

Usage

public void DepositBook(Book book)
{
    Guard.Argument(book, nameof(book)).NotNull();

    // Deposit the book
}

// OR

public class Book
{
    public string Name { get; }
    public string Author { get; }
    public string[] Genres { get; }
    public int NumberOfPages { get; }
    public DateTime PublicationDate { get; }

    public Book(string name, string author, string[] genres, int numberOfPages, DateTime publicationDate)
    {
        Guard.Argument(name, nameof(name)).NotNullOrWhiteSpace();
        Guard.Argument(author, nameof(author)).NotNullOrWhiteSpace();
        Guard.Argument(genres, nameof(genres))
            .NotNull()
            .ElementsCount(c => c.GreaterThan(0));
        Guard.Argument(numberOfPages, nameof(numberOfPages)).GreaterThan(0);
        Guard.Argument(publicationDate, nameof(publicationDate)).NotDefault();

        // Initialize the book
    }
}

Guard Clause Chaining

In order to make the guard code as readable as possible you are able to chain as many guard clauses as you like:

    Guard.Argument(genres, nameof(genres))
        .NotNull()
        .ElementsCount(c => c.GreaterThan(0));

Generics

Guard clauses are generic so only applicable to the parameter type will show in the IntelliSense. Additionally guard clauses with parameters will have their types infered.

Supported Guard Clauses

The library supports the following guard clauses out of the box.

For all parameter types

  • NotNull() - throw if the argument is null.
  • NotDefault() - throws if the argument is equal to its default value.
  • EqualsTo(value) - throws if the argument does not equal to the specified value.
  • NotEqualsTo(value) - throws if the argument is equal to the specified value.
  • Satisfies(predicate) - throws if the argument does not satisfy the specified predicate.

For string parameters

  • NotNullOrEmpty() - throws if the argument is null or empty.
  • NotNullOrWhiteSpace() - throws if the argument is null or empty or consists of only white-space characters.
  • InFormat(regexPattern, options) - throws if the argument is not in the format specified by a regular expression.

For IComparable parameters

  • GreaterThan(value) - throws if the argument is not greater than the specified value.
  • GreaterThanOrEqualTo(value) - throws if the argument is not greater than or equal to the specified value.
  • LessThan(value) - throws if the argument is not less than the specified value.
  • LessThanOrEqualTo(value) - throws if the argument is not less than or equal to the specified value.
  • InRange(min, max) - throws if the argument is not within the specified range.
  • NotInRange(min, max) - throws if the argument is within the specified range.

For IEnumerable parameters

  • NotEmpty() - throws if the argument is not null and does not have any items.
  • ElementsCount(guardClause) - throws if the argument is not null and the number of its elements does not pass the specified guard clause.
  • AllElements(guardClause) - throws if the argument is not null and at least one of its elements does not pass the specified guard clause.

Extending with your own Guard Clauses

To extend your own guards, you can do the following:

// Using the same namespace will make sure your code picks up your 
// extensions no matter where they are in your codebase.
namespace Byteology.GuardClauses
{
    public static class GuardClauseExtensions
    {
        public static IGuardClause<Book> NotBlacklisted<Book>(this IGuardClause<Book> clause)
        {
            if (clause.Argument.Author == "Blacklisted Author")
                throw new ArgumentException($"{clause.ArgumentName} is in the list of blacklisted books.");

            return clause;
        }
    }
}

// Usage
public void DepositBook(Book book)
{
    Guard.Argument(book, nameof(book))
        .NotNull()
        .NotBlacklisted();

    // Deposit the book
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net5.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Byteology.GuardClauses:

Package Downloads
Byteology.TypedHttpClients The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides classes for creating typed http clients from an interface describing a service.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 300 1/9/2023
1.2.1 2,209 10/26/2021
1.2.0 293 10/26/2021
1.1.0 560 10/19/2021
1.0.2 299 10/16/2021
1.0.1 361 10/15/2021
1.0.0 513 10/15/2021