A range. 範囲。
Operator
演算子
~=(_:
~=(_:_:)
Returns a Boolean value indicating whether a value is included in a range.
値が範囲に含まれるかどうかを指し示すブール値を返します。
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 宣言
static func ~= (pattern: PartialRangeFrom
<Bound>, value: Bound) -> Bool
Parameters パラメータ
pattern
bound
A value to match against
pattern
.pattern
と照合することになるある値。
Discussion 解説
You can use the pattern-matching operator (~=
) to test whether a value is included in a range. The pattern-matching operator is used internally in case
statements for pattern matching. The following example uses the ~=
operator to test whether an integer is included in a range of single-digit numbers:
あなたは、このパターンマッチング演算子(~=
)を使うことで、ある値がある範囲に含まれるかどうか検査できます。パターンマッチング演算子は、内部的にcase
文の中でパターンマッチングのために使われます。以下の例は、~=
演算子を使って、ある整数が一桁の数いくつかからなるある範囲に含まれるかどうか調べます: