The element to check for containment. この要素が含まれるかを調べます。
Instance Method
インスタンスメソッド
contains(_:)
Returns a Boolean value indicating whether the given element is contained within the range.
与えられた要素がこの範囲内に含まれるかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 8.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func contains(_ element: Bound) -> Bool
Parameters パラメータ
element
Return Value 戻り値
true
if element
is contained in the range; otherwise, false
.
element
がこの範囲に含まれるならばtrue
;そうでなければ、false
。
Discussion 解説
A Closed
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.
Closed
インスタンスは、それの下方および上方境界の両方を含みます。element
は、それが2つの境界の間またはどちらかの境界と等しいならば、その範囲に含まれます。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Checking for Containment 制約を調べる
static func ~= (ClosedRange<Bound>, Bound) -> Bool
Returns a Boolean value indicating whether a value is included in a range.
値が範囲に含まれるかどうかを指し示すブール値を返します。