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 解説
Because Range
represents a half-open range, a Range
instance does not contain its upper bound. element
is contained in the range if it is greater than or equal to the lower bound and less than the upper bound.
Range
は半開範囲を表すことから、Range
インスタンスはそれの上方の境界を含みません。element
が範囲の中のに含まれるのは、それが下方境界より大きいか等しく上方境界より少ない場合です。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Checking for Containment 制約を調べる
static func ~= (Range<Bound>, Bound) -> Bool
Returns a Boolean value indicating whether a value is included in a range.
値が範囲に含まれるかどうかを指し示すブール値を返します。