SortedSet<T>.Overlaps(IEnumerable<T>) メソッド

定義

現在の SortedSet<T> オブジェクトと指定されたコレクションとが共通の要素を共有しているかどうかを判断します。

public:
 virtual bool Overlaps(System::Collections::Generic::IEnumerable<T> ^ other);
public bool Overlaps (System.Collections.Generic.IEnumerable<T> other);
abstract member Overlaps : seq<'T> -> bool
override this.Overlaps : seq<'T> -> bool
Public Function Overlaps (other As IEnumerable(Of T)) As Boolean

パラメーター

other
IEnumerable<T>

現在の SortedSet<T> オブジェクトと比較するコレクション。

戻り値

SortedSet<T> オブジェクトと other との間に共通する要素が 1 つでも存在する場合は true。それ以外の場合は false

実装

例外

othernullです。

注釈

内の other 重複する要素はすべて無視されます。

このメソッドは 操作です O(n log m) 。ここで m 、 は Count および notherの要素の数です。

適用対象