A value to compare. 比較する値。
Operator
演算子
<=(_:
<=(_:_:)
Returns a Boolean value indicating whether the value of the first argument is less than or equal to that of the second argument.
最初の引数の値が2番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 10.2+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func <= (lhs: FlattenSequence
<Base>.Index
, rhs: FlattenSequence
<Base>.Index
) -> Bool
Parameters パラメータ
lhs
rhs
Another value to compare. もう一方の比較する値。
Discussion 解説
This is the default implementation of the less-than-or-equal-to operator (<=
) for any type that conforms to Comparable
.
Comparable
に準拠するあらゆる型に対して、より少ないか等しい演算子(<=
)の初期状態の実装です。