10 references to ContainsAnyExcept
System.Formats.Tar (1)
System\Formats\Tar\TarHelpers.cs (1)
134!buffer.ContainsAnyExcept((byte)0);
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\Tensor.cs (3)
1473if (!tensor.Strides.ContainsAnyExcept(0)) 1546if (!tensor.Strides.ContainsAnyExcept(0)) 1623if (!tensor.Strides.ContainsAnyExcept(0))
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (2)
405/// <inheritdoc cref="ContainsAnyExcept{T}(ReadOnlySpan{T}, T)"/> 409ContainsAnyExcept((ReadOnlySpan<T>)span, value);
System.Runtime.Numerics (3)
src\libraries\Common\src\System\Number.Parsing.Common.cs (1)
306return !value.Slice(index).ContainsAnyExcept(TChar.CastFrom('\0'));
System\Numerics\BigIntegerCalculator.Utils.cs (2)
20Debug.Assert(left.Length <= right.Length || left.Slice(right.Length).ContainsAnyExcept(0u)); 21Debug.Assert(left.Length >= right.Length || right.Slice(left.Length).ContainsAnyExcept(0u));
System.Security.Cryptography (1)
System\Security\Cryptography\SymmetricPadding.cs (1)
167if (block.Slice(block.Length - padBytes, padBytes - 1).ContainsAnyExcept((byte)0))