MemoryExtensionsPolyfills
namespace System
{
internal static class MemoryExtensionsPolyfills
{
public static bool ContainsAnyExcept(this ReadOnlySpan<char> span, char value)
{
for (int i = 0; i < span.Length; i++) {
if (span[i] != value)
return true;
}
return false;
}
}
}