LfrlAnvil.Core 0.2.1

dotnet add package LfrlAnvil.Core --version 0.2.1
NuGet\Install-Package LfrlAnvil.Core -Version 0.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="LfrlAnvil.Core" Version="0.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LfrlAnvil.Core --version 0.2.1
#r "nuget: LfrlAnvil.Core, 0.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 LfrlAnvil.Core as a Cake Addin
#addin nuget:?package=LfrlAnvil.Core&version=0.2.1

// Install LfrlAnvil.Core as a Cake Tool
#tool nuget:?package=LfrlAnvil.Core&version=0.2.1

(root) NuGet Badge

LfrlAnvil.Core

This project contains a bunch of lightweight core functionalities, used by other LfrlAnvil projects.

Documentation

Technical documentation can be found here.

Examples

Following are examples of some of the more interesting functionalities:

var value = 42;

// the 'Ensure' static class contains a set of assertion methods
Ensure.IsGreaterThan( value, 40 );
Ensure.IsInRange( value, 4, 104 );
Ensure.IsNotNull( ( int? )value );
Ensure.IsNotEmpty( value.ToString() );

// ----------
// the 'Assume' static class contains a set of assertion methods for 'DEBUG' mode only
Assume.IsGreaterThan( value, 40 );
Assume.IsInRange( value, 4, 104 );
Assume.IsNotNull( value );
Assume.IsNotEmpty( value.ToString() );

// ----------
// the generic 'Bitmask' struct allows to manipulate bitmasks in a more managed way
[Flags]
public enum Foo
{
    None = 0,
    A = 1,
    B = 2,
    C = 4
}

// creates an object equivalent to 'Foo.None'
var bitmask = Bitmask<Foo>.Empty;

// performs bitwise-or operations
// should returns an object equivalent to 'Foo.A | Foo.B'
bitmask = bitmask.Set( Foo.A ).Set( Foo.B );

// performs bitwise-and operations
// should return an object equivalent to 'Foo.A'
bitmask = bitmask.Intersect( Foo.A | Foo.C );

// ----------
// the generic 'Bounds' struct represents a range of values
// there also exists the 'BoundsRange' struct, that represents an ordered collection
// of disjointed bounds instances
var bounds = new Bounds<int>( min: 4, max: 104 );

// checks whether or not 42 is contained in [4, 104] range, should return true
var contains = bounds.Contains( 42 );

// ----------
// the Interlocked* structures represent atomic values
var b = new InterlockedBoolean( false );

// atomically writes true to 'b' and returns information about whether or not the value has changed,
// which in this case should return true
var changed = b.WriteTrue();

// ----------
// the 'Fixed' structure represents a number that uses fixed-point precision arithmetic
// this creates a new 'Fixed' instance that represents 42.1230 number
// these numbers are internally stored as 64-bit signed integers
var f = Fixed.Create( 42.123m, precision: 4 );

// adds two 'Fixed' numbers together, which in this case should result in 42.2464 number
f = f + Fixed.Create( 0.1234m, precision: 4 );

// ----------
// creates a new cache with 'string' key and 'int' value, with maximum capacity for 3 entries
// for the most part, caches behave like dictionaries, with the additional entry count limit
var cache = new Cache<string, int>( capacity: 3 );

// adds 3 entries to the cache, which fills it up to its maximum capacity
cache.AddOrUpdate( "foo", 42 );
cache.AddOrUpdate( "bar", 123 );
cache.AddOrUpdate( "qux", -1 );

// adding another entry will cause the oldest entry (in this case, the 'foo' entry) to be removed
cache.AddOrUpdate( "lorem", 246 );

// currently, cache consists of ('bar', 123) => ('qux', -1) => ('lorem', 246) sequence of entries
// fetching a value from the cache also moves it to the end of the sequence,
// effectively making it the newest entry
// the following should return 123 and rearrange the sequence to:
// ('qux', -1) => ('lorem', 246) => ('bar', 123)
var result = cache["bar"];

// entries can also be removed manually, like so:
cache.Remove( "lorem" );

There are also a plethora of other minor functionalities and extension methods.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.
  • net8.0

    • No dependencies.

NuGet packages (10)

Showing the top 5 NuGet packages that depend on LfrlAnvil.Core:

Package Downloads
LfrlAnvil.Sql.Core

This project contains core functionalities related to SQL.

LfrlAnvil.Reactive.Core

This project contains a few reactive programming functionalities.

LfrlAnvil.Collections

This project contains a few additional collections and data structures.

LfrlAnvil.Validation

This project contains definitions of various composable validators, as well as validation message formatters.

LfrlAnvil.Chrono

This project contains functionalities related to date and time, as well as timezones.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.1 136 6/16/2024
0.2.0 139 6/16/2024
0.1.1 199 5/29/2024
0.1.0 229 5/26/2024