MemoryExtensions.ContainsAnyExceptInRange 方法

定义

重载

ContainsAnyExceptInRange<T>(ReadOnlySpan<T>, T, T)

搜索 和 highInclusive之间的lowInclusive范围之外的任何值(包括 )。

ContainsAnyExceptInRange<T>(Span<T>, T, T)

搜索 和 highInclusive之间的lowInclusive范围之外的任何值(包括 )。

ContainsAnyExceptInRange<T>(ReadOnlySpan<T>, T, T)

Source:
MemoryExtensions.cs
Source:
MemoryExtensions.cs

搜索 和 highInclusive之间的lowInclusive范围之外的任何值(包括 )。

public static bool ContainsAnyExceptInRange<T> (this ReadOnlySpan<T> span, T lowInclusive, T highInclusive) where T : IComparable<T>;

类型参数

T

参数

span
ReadOnlySpan<T>

要搜索的跨度。

lowInclusive
T

排除范围的下限(含)。

highInclusive
T

排除范围的上限(含)。

返回

true 如果范围中存在指定范围内以外的任何值,则为 。 如果所有值都在指定范围内,则 false返回 。

适用于

.NET 9 和 .NET 8
产品 版本
.NET 8, 9

ContainsAnyExceptInRange<T>(Span<T>, T, T)

Source:
MemoryExtensions.cs
Source:
MemoryExtensions.cs

搜索 和 highInclusive之间的lowInclusive范围之外的任何值(包括 )。

public static bool ContainsAnyExceptInRange<T> (this Span<T> span, T lowInclusive, T highInclusive) where T : IComparable<T>;

类型参数

T

参数

span
Span<T>

要搜索的跨度。

lowInclusive
T

排除范围的下限(含)。

highInclusive
T

排除范围的上限(含)。

返回

true 如果范围中存在指定范围内以外的任何值,则为 。 如果所有值都在指定范围内,则 false返回 。

适用于

.NET 9 和 .NET 8
产品 版本
.NET 8, 9