MicroElements.Collections.Sources
1.2.0
Prefix Reserved
See the version list below for details.
dotnet add package MicroElements.Collections.Sources --version 1.2.0
NuGet\Install-Package MicroElements.Collections.Sources -Version 1.2.0
<PackageReference Include="MicroElements.Collections.Sources" Version="1.2.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add MicroElements.Collections.Sources --version 1.2.0
#r "nuget: MicroElements.Collections.Sources, 1.2.0"
// Install MicroElements.Collections.Sources as a Cake Addin #addin nuget:?package=MicroElements.Collections.Sources&version=1.2.0 // Install MicroElements.Collections.Sources as a Cake Tool #tool nuget:?package=MicroElements.Collections.Sources&version=1.2.0
MicroElements.Collections.Sources
Summary
MicroElements source only package: Collection extensions: NotNull, Iterate, Materialize. Special collections: TwoLayerCache.
Extensions
NotNull
Returns not null (empty) enumeration if input is null.
string? GetFirstValue(IEnumerable<string>? optionalValues) =>
optionalValues
.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);
Materialize
Materializes source enumeration and allows to see intermediate results without changing execute chain. MaterializeDebug is the same as Materialize but works only in Debug mode and does not affect performance for Release builds.
Enumerable
.Range(1, 10)
.Materialize(values => { /*set breakpoint here*/ })
.Iterate(Console.WriteLine);
Collections
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 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. |
-
.NETStandard 2.1
- MicroElements.CodeContracts.Sources (>= 1.1.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on MicroElements.Collections.Sources:
Package | Downloads |
---|---|
MicroElements.Reflection.Sources
MicroElements source only package: Reflection. Classes: TypeExtensions, TypeCheck, ObjectExtensions, Expressions, CodeCompiler, FriendlyName. |
|
MicroElements.Shared.Sources
MicroElements source packages metapackage. |
GitHub repositories
This package is not used by any popular GitHub repositories.
# Changelog
## [1.2.0] - 2021-12-10
- Added: Materialize extensions
- Changed: TwoLayerCache: Interlocked increments for cache metrics
- Changed: MicroElements.CodeContracts.Sources bumped to 1.1.0
## [1.1.0] - 2021-10-17
- Added: Iterate extensions
- Added: TwoLayerCache
- Changed: Namespaces granularity on file level.
## [1.0.0] - 2021-10-14
- Added: NotNull extensions
Full release notes can be found at: https://github.com/micro-elements/MicroElements.Shared/blob/master/src/MicroElements.Collections.Sources/CHANGELOG.md