Generic 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番目の引数のそれより少ないまたは等しいかどうかを指し示すブール値を返します。

Declaration 宣言

static func <= <RHS>(lhs: String, rhs: RHS) -> Bool where RHS : StringProtocol

Parameters パラメータ

lhs

A value to compare. 比較する値。

rhs

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

Discussion 解説

See Also 参照

Comparing Strings Using Operators 文字列を演算子を使って比較する