Instance Method インスタンスメソッド

contains(_:)

Returns a Boolean value indicating whether the given element is contained within the range. 与えられた要素がこの範囲内に含まれるかどうかを指し示すブール値を返します。

Declaration 宣言

func contains(_ element: Bound) -> Bool

Parameters パラメータ

element

The element to check for containment. この要素が含まれるかを調べます。

Return Value 戻り値

true if element is contained in the range; otherwise, false. elementがこの範囲に含まれるならばtrue;そうでなければ、false

Discussion 解説

A ClosedRange instance contains both its lower and upper bound. element is contained in the range if it is between the two bounds or equal to either bound. ClosedRangeインスタンスは、それの下方および上方境界の両方を含みます。elementは、それが2つの境界の間またはどちらかの境界と等しいならば、その範囲に含まれます。

Relationships 関係

From Protocol 由来プロトコル

See Also 参照

Checking for Containment 制約を調べる