Operator 演算子

<(_:_:)

Returns a Boolean value indicating whether the value of the first argument is less than that of the second argument. 最初の引数の値が2番目の引数のそれより少ないかどうかを指し示しているブール値を返します。

Declaration 宣言

Parameters パラメータ

lhs

A value to compare. 比較する値。

rhs

Another value to compare. もう一方の比較する値。

Discussion 議論

This function is the only requirement of the Comparable protocol. The remainder of the relational operator functions are implemented by the standard library for any type that conforms to Comparable. この関数は、Comparableプロトコルの唯一の要件です。関係演算子関数の残りは、Comparableに準拠するあらゆる型のために標準ライブラリによって実装されます。

See Also 参照

Comparing Scheduler Time Types