An integer to compare. 比較する整数。
Generic Operator<(_:
<(_:_:)
Returns a Boolean value indicating whether the value of the first argument is less than 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 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
static func < <Other>(lhs: UInt64
, rhs: Other) -> Bool
where Other : BinaryInteger
Parameters パラメータ
lhs
rhs
Another integer to compare. 比較するもう一方の整数。
Discussion 解説
You can compare instances of any Binary
types using the less-than operator (<
), even if the two instances are of different types.
あなたは、何らかのBinary
型のインスタンスをより小さい演算子(<
)を使って比較できます、2つのインスタンスが異なる型であるとしてもです。