A value to compare. 比較する値。
Operator
演算子
>(_:
>(_:_:)
Returns a Boolean value indicating whether the value of the first argument is greater than that of the second argument.
最初の引数の値が2番目の引数のそれより大きいかどうかを指し示すブール値を返します。
Availability 有効性
- iOS 15.0+
- iPadOS 15.0+
- macOS 12.0+
- Mac Catalyst 15.0+
- tvOS 15.0+
- watchOS 8.0+
- Xcode 13.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
static func > (lhs: AttributedString
.Runs
.Index
, rhs: AttributedString
.Runs
.Index
) -> Bool
Parameters パラメータ
lhs
rhs
Another value to compare. もう一方の比較する値。
Discussion 議論
This is the default implementation of the greater-than operator (>
) for any type that conforms to Comparable
.
Comparable
に準拠するあらゆる型に対してのより大きい演算子(>
)の初期状態の実装です。