func isCaseInsensitiveLike (String) -> Bool
Returns a Boolean value that indicates whether receiver is considered to be “like” a given string when the case of characters in the receiver is ignored.
レシーバの中の文字の大文字小文字等が無視される場合に、与えられた文字列に「似ている」とレシーバが見なされるかどうかを指し示すブール値を返します。
func isEqual (to: Any?) -> Bool
Returns a Boolean value that indicates whether the receiver is equal to another given object.
レシーバが別の与えられたオブジェクトと等しいかどうかを指し示すブール値を返します。
func isGreaterThan (Any?) -> Bool
Returns a Boolean value that indicates whether the receiver is greater than another given object.
レシーバが別の与えられたオブジェクトより大きいかどうかを指し示すブール値を返します。
func isGreaterThanOrEqual (to: Any?) -> Bool
Returns a Boolean value that indicates whether the receiver is greater than or equal to another given object.
レシーバが別の与えられたオブジェクトより大きいまたは等しいかどうかを指し示すブール値を返します。
func isLessThan (Any?) -> Bool
Returns a Boolean value that indicates whether the receiver is less than another given object.
レシーバが別の与えられたオブジェクトより小さいかどうかを指し示すブール値を返します。
func isLessThanOrEqual (to: Any?) -> Bool
Returns a Boolean value that indicates whether the receiver is less than or equal to another given object.
レシーバが別の与えられたオブジェクトより小さいまたは等しいかどうかを指し示すブール値を返します。
func isLike (String) -> Bool
Returns a Boolean value that indicates whether the receiver is "like" another given object.
レシーバが別の与えられたオブジェクトと「似ている」かどうかを指し示すブール値を返します。
func isNotEqual (to: Any?) -> Bool
Returns a Boolean value that indicates whether the receiver is not equal to another given object.
レシーバが別の与えられたオブジェクトと等しくないかどうかを指し示すブール値を返します。