MicroElements.Collections.Extensions.Sources
1.1.0
Prefix Reserved
Install-Package MicroElements.Collections.Extensions.Sources -Version 1.1.0
dotnet add package MicroElements.Collections.Extensions.Sources --version 1.1.0
<PackageReference Include="MicroElements.Collections.Extensions.Sources" Version="1.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
paket add MicroElements.Collections.Extensions.Sources --version 1.1.0
#r "nuget: MicroElements.Collections.Extensions.Sources, 1.1.0"
// Install MicroElements.Collections.Extensions.Sources as a Cake Addin
#addin nuget:?package=MicroElements.Collections.Extensions.Sources&version=1.1.0
// Install MicroElements.Collections.Extensions.Sources as a Cake Tool
#tool nuget:?package=MicroElements.Collections.Extensions.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 | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.1 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.1
- MicroElements.CodeContracts.Sources (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.