NormalizedSpanCollection.Overlap Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Suchen Sie die Überlappung von zwei Span-Sätzen.
public:
static Microsoft::VisualStudio::Text::NormalizedSpanCollection ^ Overlap(Microsoft::VisualStudio::Text::NormalizedSpanCollection ^ left, Microsoft::VisualStudio::Text::NormalizedSpanCollection ^ right);
public static Microsoft.VisualStudio.Text.NormalizedSpanCollection Overlap (Microsoft.VisualStudio.Text.NormalizedSpanCollection left, Microsoft.VisualStudio.Text.NormalizedSpanCollection right);
static member Overlap : Microsoft.VisualStudio.Text.NormalizedSpanCollection * Microsoft.VisualStudio.Text.NormalizedSpanCollection -> Microsoft.VisualStudio.Text.NormalizedSpanCollection
Public Shared Function Overlap (left As NormalizedSpanCollection, right As NormalizedSpanCollection) As NormalizedSpanCollection
Parameter
Der erste Spannensatz.
- right
- NormalizedSpanCollection
Der zweite Spannensatz.
Gibt zurück
Der neue Spannensatz, der der Überlappung von left
und right
entspricht.
Ausnahmen
left
oder right
ist NULL.
Hinweise
Dieser Operator wird in O(N+M)-Zeit ausgeführt, wobei N = links ist. Count, M = right. Count.