Heleonix.Extensions
1.0.0
Install-Package Heleonix.Extensions -Version 1.0.0
dotnet add package Heleonix.Extensions --version 1.0.0
<PackageReference Include="Heleonix.Extensions" Version="1.0.0" />
paket add Heleonix.Extensions --version 1.0.0
#r "nuget: Heleonix.Extensions, 1.0.0"
// Install Heleonix.Extensions as a Cake Addin
#addin nuget:?package=Heleonix.Extensions&version=1.0.0
// Install Heleonix.Extensions as a Cake Tool
#tool nuget:?package=Heleonix.Extensions&version=1.0.0
Heleonix.Extensions
Provides predicative and other useful extensions for objects, strings, enumerables etc.
Install
https://www.nuget.org/packages/Heleonix.Extensions
These extensions do not throw exceptions, so they can be used without try/catch blocks or extra if
statements.
All of the extensions are straightforward, so descriptions provided by intellisense is pretty enough.
Heleonix.Extensions.ObjectExtensions
Methods
public static bool IsNull(this object instance)
public static bool IsZero(this object instance)
public static bool IsOne(this object instance)
public static bool IsNegative(this object instance)
public static bool IsPositive(this object instance)
public static bool IsEqualTo(this object instance, object other)
public static bool IsAs(this object instance, Type type)
Determines whether this instance is subclass of or exactly the specified type.
public static bool IsTypeOf(this object instance, Type type)
Determines whether a type of this instance exactly equals the specified type.
Heleonix.Extensions.EnumerableExtensions
Methods
public static bool IsEmpty<T>(this IEnumerable<T> instance)
public static bool IsNullOrEmpty<T>(this IEnumerable<T> instance)
Heleonix.Extensions.ComparableExtensions
Methods
public static bool IsLessThan<T>(this IComparable<T> instance, T value)
public static bool IsLessThanOrEqualTo<T>(this IComparable<T> instance, T value)
public static bool IsGreaterThan<T>(this IComparable<T> instance, T value)
public static bool IsGreaterThanOrEqualTo<T>(this IComparable<T> instance, T value)
public static bool IsInRange<T>(this IComparable<T> instance, T min, T max)
Determines whether this instance is in range (inclusive) of the provided values.
public static bool IsBetween<T>(this IComparable<T> instance, T min, T max)
Determines whether this instance is between (exclusive) the provided values.
Heleonix.Extensions.StringExtensions
Methods
public static string FormatWith(this string format, params object[] args)
Formats the specified format string with the specified arguments.
Example
var str = "{0} plus {1} equals {2}".FormatWith(1, 2, 3); // "1 plus 2 equals 3"
public static string FormatWith(this string format, IFormatProvider formatProvider, params object[] args)
Formats the specified format string with the specified arguments using a specified format provider.
public static bool IsNullOrEmptyOrWhiteSpace(this string instance)
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 | netcoreapp1.0 netcoreapp1.1 netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard1.6 netstandard2.0 netstandard2.1 |
.NET Framework | net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen30 tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.5.1
- No dependencies.
-
.NETFramework 4.5.2
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETFramework 4.6.1
- No dependencies.
-
.NETFramework 4.6.2
- No dependencies.
-
.NETStandard 1.6
- NETStandard.Library (>= 1.6.1)
-
.NETStandard 2.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Heleonix.Extensions:
Package | Downloads |
---|---|
Heleonix.Guard
Provides performant guard functionality for methods to throw exceptions |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 2,612 | 6/22/2018 |
Split from the Heleonix.Utilities