Return Value 戻り値
true
if this sequence and other
contain equivalent items, using are
as the equivalence test; otherwise, false.
true
、このシーケンスとother
がare
を同等性テストとして使って同じ要素らを含むならば;そうでなければ、false
。
Availability 有効性
Technology
true
if this sequence and other
contain equivalent items, using are
as the equivalence test; otherwise, false.
true
、このシーケンスとother
がare
を同等性テストとして使って同じ要素らを含むならば;そうでなければ、false
。
other
A sequence to compare to this sequence. あるシーケンス、このシーケンスと比べることになります。
areEquivalent
A predicate that returns true
if its two arguments are equivalent; otherwise, false
.
ある述部、それはそれの2つの引数が等しいならばtrue
を返します;そうでなければ、false
。
At least one of the sequences must be finite. 少なくともシーケンスのうちの一方は有限でなければなりません。
The predicate must be a equivalence relation over the elements. That is, for any elements a
, b
, and c
, the following conditions must hold:
述部は要素に対して同値関係でなければなりません。すなわち、何らかの要素a
、b
、そしてc
に対して、以下の条件が保持されなければなりません:
are
is always true
. (Reflexivity)
are
は常にtrue
である。(反射性)
are
implies are
. (Symmetry)
are
はare
を意味する。(対称性)
If are
and are
are both true
, then are
is also true
. (Transitivity)
are
とare
が両方ともtrue
ならば、そのときare
もまたtrue
である。(推移性)
Complexity
O(m), where m is the lesser of the length of the sequence and the length of other
.