DevFast.Net.Extensions 0.7.3

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

// Install DevFast.Net.Extensions as a Cake Tool
#tool nuget:?package=DevFast.Net.Extensions&version=0.7.3                

Part of dotnet.devfast project.

DevFast.Net.Extensions Build status codecov NuGet

Developer Documentation, Release Notes

This project contains well-tested, self-explained & easy to use extension methods to achieve optimized runtime performance with improved readability of the code.

Examples

String Parsing

String parsing becomes as easy as stringValue.TryTo(out <T> ...) (where T can be bool, Guid, int, double, decimal, DateOnly, DateTime, TimeOnly etc...):

  • "123".TryTo(out int parsedInt) should return true with parsedInt as 123.

Similar ".TryTo" also exists on ReadOnlySpan<char> and ReadOnlySpan<byte>

Avoid NullReferenceException on String
  • possibleNullString?.Trim() ?? string.Empty Becomes possibleNullString.TrimSafeOrEmpty()
  • possibleNullString?.Trim().ToUpper() ?? string.Empty Becomes possibleNullString.TrimSafeAndUpper() (same for Upper and more...)
Working on Byte Arrays (byte[])
  • myByteArray.LiftNCopySafe(...) moves bytes with-in Arrays
  • myByteArray.DoubleByteCapacity() returns new array with initial bytes but twice the capacity
  • myByteArray.CopyToSafe(...) copies bytes to targeted array
IEnumerable & IAsyncEnumerable with Token All the Way
  • ForEach, ForEachAsync, ToBlockingEnumerable with Token
  • Token support for SelectAsync, SkipAsync, TakeAsync, WhereAsync, CountAsync, ToChunksAsync etc.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 DevFast.Net.Extensions:

Package Downloads
DevFast.Net.Text

Package containing well-tested, self-explained & easy to use artifacts necessary for text processing.

DevFast.Net.Collection

Package contains well-tested optimized data-structures like FastDictionary, Heap etc.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.7.3 67 12/18/2024
0.7.2 423 7/21/2024
0.7.1 110 7/21/2024
0.7.0 187 7/20/2024
0.6.0 102 7/10/2024
0.5.0 113 6/24/2024
0.4.0 116 6/22/2024
0.3.0 152 3/10/2024
0.2.0 177 2/11/2024
0.1.1 264 11/4/2023
0.1.0 146 10/20/2023