MicroElements.Collections.Sources
1.9.0
Prefix Reserved
See the version list below for details.
dotnet add package MicroElements.Collections.Sources --version 1.9.0
NuGet\Install-Package MicroElements.Collections.Sources -Version 1.9.0
<PackageReference Include="MicroElements.Collections.Sources" Version="1.9.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add MicroElements.Collections.Sources --version 1.9.0
#r "nuget: MicroElements.Collections.Sources, 1.9.0"
// Install MicroElements.Collections.Sources as a Cake Addin #addin nuget:?package=MicroElements.Collections.Sources&version=1.9.0 // Install MicroElements.Collections.Sources as a Cake Tool #tool nuget:?package=MicroElements.Collections.Sources&version=1.9.0
MicroElements.Collections.Sources
Summary
MicroElements source only package: Collection extensions: NotNull, Iterate, Execute, WhereNotNull, Materialize, IncludeByWildcardPatterns, ExcludeByWildcardPatterns. Special collections: TwoLayerCache.
Extensions
NotNull
Returns not null (empty) enumeration if input is null.
string? GetFirstValue(IEnumerable<string>? optionalValues) =>
optionalValues
.NotNull()
.FirstOrDefault();
WhereNotNull
Enumerates only not null values.
string?[] namesWithNulls = {"Alex", null, "John"};
string[] names = namesWithNulls.WhereNotNull().ToArray();
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);
Execute
Execute extension allows to execute an action on each value while enumerating the source enumeration.
This method is pure LINQ method, with postponed enumeration, also it can be chained.
Enumerable
.Range(1, 10)
.Execute(Console.WriteLine)
.Iterate();
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);
WildCard
Provides methods for wildcard or glob filtering.
See also: https://en.wikipedia.org/wiki/Glob_(programming).
[Fact]
public void WildcardInclude()
{
string[] values = { "Microsoft.Extension.Logging", "Microsoft.AspNetCore.Hosting", "FluentAssertions", "System.Collections.Generic" };
string[] includePatterns = { "Microsoft.AspNetCore.*", "*.Collections.*" };
string[] result = { "Microsoft.AspNetCore.Hosting", "System.Collections.Generic" };
values.IncludeByWildcardPatterns(includePatterns).Should().BeEquivalentTo(result);
}
[Fact]
public void WildcardExclude()
{
string[] values = { "Microsoft.Extension.Logging", "Microsoft.AspNetCore.Hosting", "FluentAssertions", "System.Collections.Generic" };
string[] excludePatterns = { "Microsoft.AspNetCore.*", "*.Collections.*" };
string[] result = { "Microsoft.Extension.Logging", "FluentAssertions" };
values.ExcludeByWildcardPatterns(excludePatterns).Should().BeEquivalentTo(result);
}
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.
Cache
Global ambient cache extensions.
Represents ConcurrentDictionary
of some type that is accessed by it's name.
Reason: Use cache from any place of your code without declaring cache (that's so boring and noisy). Best suited for global caches of immutable objects that never changes in application lifecycle.
Usage
// Static named cache
var value = Cache
.Instance<string, string>("Example")
.GetOrAdd("key1", k => VeryLongFetch(k));
// Cache attached to instance
var value = instance
.GetWeakCache<string, string>(/*optional name*/)
.GetOrAdd("key1", k => VeryLongFetch(k));
Notes
- Cache instance is global so use proper cache instance names.
- For static cache use some const name for example class name or method name
- Can cause to memory leak if cache grows permanently. For such cases use caches that clears by time or size for example
TwoLayerCache
- Adds one more operation to find cache instance
- It can be treated as some kind of an "AMBIENT CONTEXT" that becomes an anti-pattern. See: https://freecontent.manning.com/the-ambient-context-anti-pattern/
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.3.0)
- MicroElements.IsExternalInit (>= 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.9.0] - 2023-09-17
- PollingCache provides caching that refreshes cached value on retrieve if value was expired
- TwoLayerCache added check for maxItemCount for cold cache
## [1.8.0] - 2023-05-25
- Added: WhereNotNull extension that enumerates only not null values
- Added: Execute extension that allows to execute an action on each value while enumerating the source enumeration
## [1.7.0] - 2023-02-25
- Added: Cache.GetWeakCache - special cache that attaches to instance with weak reference and can be released by GC after the host object release
## [1.6.0] - 2022-10-09
- Added: MicroElements.Collections.Extensions.WildCard. Methods: IsMatchesWildcard, IncludeByWildcardPatterns, ExcludeByWildcardPatterns
- Changed: Cache.Instance and TwoLayerCache.Instance methods unified and become typesafe.
## [1.5.0] - 2022-05-28
- Added: Cache.Instance - global static cache instance
## [1.4.0] - 2022-05-15
- Added: TwoLayerCache.Instance - global static cache instance
## [1.3.0] - 2022-01-12
- Changed: Fixed PureAttribute ambiguity in NotNull extension when JetBrains.Annotations referenced
## [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