Skip to content

Commit d0ff45b

Browse files
Merge pull request #8965 from gurustron/patch-3
SortedSet.Overlaps is O (n log m) in the worst case
2 parents 698889f + 0d90868 commit d0ff45b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xml/System.Collections.Generic/SortedSet`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1707,7 +1707,7 @@
17071707
## Remarks
17081708
Any duplicate elements in `other` are ignored.
17091709
1710-
This method is an `O(n)` operation, where `n` is the number of elements in `other`.
1710+
This method is an `O(n log m)` operation, where `m` is <xref:System.Collections.Generic.SortedSet%601.Count%2A> and `n` is the number of elements in `other`.
17111711
17121712
]]></format>
17131713
</remarks>

0 commit comments

Comments
 (0)