MicroElements.Collections.Sources 1.1.0

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 MicroElements.Collections.Sources --version 1.1.0
NuGet\Install-Package MicroElements.Collections.Sources -Version 1.1.0
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="MicroElements.Collections.Sources" Version="1.1.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MicroElements.Collections.Sources --version 1.1.0
#r "nuget: MicroElements.Collections.Sources, 1.1.0"
#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 MicroElements.Collections.Sources as a Cake Addin
#addin nuget:?package=MicroElements.Collections.Sources&version=1.1.0

// Install MicroElements.Collections.Sources as a Cake Tool
#tool nuget:?package=MicroElements.Collections.Sources&version=1.1.0

MicroElements.Collections.Extensions.Sources

MicroElements source only package: Collection extensions.

Source only package does not forces binary reference on it. Just add package and use as code.

Usage

NotNull

Returns not null (empty) enumeration if input is null.

string? GetFirstName(IEnumerable<string>? names)
{
    return names
        .NotNull()
        .FirstOrDefault();
}

Iterate

Iterates values and executes action for each value. It's like List.ForEach but works with lazy enumerations and does not forces additional allocations.

// Iterates values and outputs to console.
Enumerable
    .Range(1, 100_000)
    .Iterate(Console.WriteLine);

TwoLayerCache

Represents ThreadSafe cache that holds only limited number of items. Can be used as drop in replacement for ConcurrentDictionary.

Use it when you need simple cache but with memory limit.

Notes:

  • Cache organized in two layers: hot and cold.
  • Items first added to cold cache.
  • GetValue first checks hot cache. If value not found in hot cache than cold cache uses for search.
  • If value exists in cold cache than item moves to hot cache.
  • If hot cache exceeds item limit then hot cache became cold cache and new hot cache creates.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on MicroElements.Collections.Sources:

Package Downloads
MicroElements.Reflection.Sources The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

MicroElements source only package: Reflection. Classes: TypeExtensions, TypeCheck, ObjectExtensions, Expressions, CodeCompiler, FriendlyName.

MicroElements.Shared.Sources The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

MicroElements source packages metapackage.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.10.0 348 10/22/2023
1.9.0 231 9/18/2023
1.7.0 407 2/25/2023
1.6.0 961 10/9/2022
1.5.0 516 6/4/2022
1.4.0 572 5/15/2022
1.3.0 1,744 1/12/2022
1.2.1 841 12/13/2021
1.2.0 787 12/11/2021
1.1.0 472 11/1/2021