19 references to SequenceEqual
Aspire.Dashboard (1)
Otlp\Model\OtlpInstrument.cs (1)
139return x.Span.SequenceEqual(y.Span);
ConfigurationSchemaGenerator (1)
RuntimeSource\SourceGenerators\DiagnosticInfo.cs (1)
45MessageArgs.SequenceEqual(other.MessageArgs) &&
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Target_Wasm\WasmTypes.cs (1)
78public bool Equals(WasmResultType other) => Types.SequenceEqual(other.Types);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoTypes.cs (1)
1660return LoweredElements.Slice(0, (int)numLoweredElements).SequenceEqual(other.LoweredElements.Slice(0, (int)other.numLoweredElements))
ILCompiler.MetadataTransform (3)
Internal\Metadata\NativeFormat\Writer\NativeFormatWriterGen.cs (2)
583if (!Value.SequenceEqual(other.Value, DoubleComparer.Instance)) return false; 1488if (!Value.SequenceEqual(other.Value, SingleComparer.Instance)) return false;
Internal\Metadata\NativeFormat\Writer\NativeMetadataWriter.cs (1)
995return CollectionsMarshal.AsSpan(first).SequenceEqual(CollectionsMarshal.AsSpan(second), comparer);
ILCompiler.ReadyToRun (2)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Target_Wasm\WasmTypes.cs (1)
78public bool Equals(WasmResultType other) => Types.SequenceEqual(other.Types);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoTypes.cs (1)
1660return LoweredElements.Slice(0, (int)numLoweredElements).SequenceEqual(other.LoweredElements.Slice(0, (int)other.numLoweredElements))
Microsoft.AspNetCore.Components.Web (2)
Routing\NavLink.cs (2)
204if (currentUriAbsolute.SequenceEqual(hrefAbsolute, CaseInsensitiveComparer)) 220currentUriAbsolute.SequenceEqual(hrefAbsolute.Slice(0, hrefAbsolute.Length - 1), CaseInsensitiveComparer))
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\ReflectionModel\LazyMemberInfo.cs (1)
134return _accessors.SequenceEqual(other._accessors);
System.Composition.TypedParts (1)
System\Composition\TypedParts\Discovery\TypeInspector.cs (1)
193if (!(mappedType == partType || mappedType.GenericTypeArguments.SequenceEqual(partType.GenericTypeParameters)))
System.Data.Common (2)
System\Data\DataKey.cs (1)
173return column1.AsSpan().SequenceEqual(column2);
System\Data\RelatedView.cs (1)
66bool allow = childValues.AsSpan().SequenceEqual(parentValues);
System.Linq (1)
System\Linq\SequenceEqual.cs (1)
29return firstSpan.SequenceEqual(secondSpan, comparer);
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (3)
3473SequenceEqual((ReadOnlySpan<T>)span, other, comparer); 3615SequenceEqual(span.Slice(0, value.Length), value, comparer); 3662SequenceEqual(span.Slice(span.Length - value.Length), value, comparer);