Skip to content

Commit

Permalink
+ IsInRange
Browse files Browse the repository at this point in the history
  • Loading branch information
Hawkynt committed Oct 30, 2024
1 parent f672790 commit bd9ef82
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Corlib.Extensions/System/Range.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// This file is part of Hawkynt's .NET Framework extensions.
//
// Hawkynt's .NET Framework extensions are free software:
// you can redistribute and/or modify it under the terms
// given in the LICENSE file.
//
// Hawkynt's .NET Framework extensions is distributed in the hope that
// it will be useful, but WITHOUT ANY WARRANTY without even the implied
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the LICENSE file for more details.
//
// You should have received a copy of the License along with Hawkynt's
// .NET Framework extensions. If not, see
// <https://github.com/Hawkynt/C--FrameworkExtensions/blob/master/LICENSE>.
//

using System.Collections.Generic;
using System.Linq;

namespace System;
public static partial class RangeExtensions {

public static bool IsInRange(this byte @this, IEnumerable<Range> ranges) => ranges.Any(range => @this >= range.Start.Value && @this <= range.End.Value);
public static bool IsInRange(this short @this, IEnumerable<Range> ranges) => ranges.Any(range => @this >= range.Start.Value && @this <= range.End.Value);
public static bool IsInRange(this ushort @this, IEnumerable<Range> ranges) => ranges.Any(range => @this >= range.Start.Value && @this <= range.End.Value);
public static bool IsInRange(this int @this, IEnumerable<Range> ranges) => ranges.Any(range => @this >= range.Start.Value && @this <= range.End.Value);

}

0 comments on commit bd9ef82

Please sign in to comment.