The element to check for containment. この要素が含まれるかを調べます。
Instance Method
インスタンスメソッド
contains(_:)
Returns a Boolean value indicating whether the given element is contained within the range expression.
与えられた要素がこの範囲式内に含まれるかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func contains(_ element: Bound) -> Bool
Parameters パラメータ
element
Return Value 戻り値
true
if element
is contained in the range expression; otherwise, false
.
true
、もしelement
がこの範囲式に含まれるならば;そうでなければ、false
。
Discussion 解説
Note 注意
This documentation comment was inherited from Range
.
この文書化コメントは、Range
から引き継がれました。