case lessThan
A less-than predicate.
「より少ない」述部。
case lessThanOrEqualTo
A less-than-or-equal-to predicate.
「より少ないまたは等しい」述部。
case greaterThan
A greater-than predicate.
「より大きい」述部。
case greaterThanOrEqualTo
A greater-than-or-equal-to predicate.
「より大きいまたは等しい」述部。
case equalTo
An equal-to predicate.
「等しい」述部。
case notEqualTo
A not-equal-to predicate.
「等しくない」述部。
case matches
A full regular expression matching predicate.
正規表現合致全体述部。
case like
A simple subset of the MATCHES predicate, similar in behavior to SQL
LIKE
.
MATCHES述部の単純な部分集合、SQL LIKE
に挙動が似ています。
case beginsWith
A begins-with predicate.
「それで始まる」述部。
case endsWith
An ends-with predicate.
「それで終わる」述部。
case `in`
A predicate to determine if the left hand side is in the right hand side.
左手側が右手側に含まれるかを決定する述部。
case customSelector
A predicate that uses a custom selector that takes a single argument and returns a
BOOL
value.
あつらえのセレクタを使う述部、それは単一の引数を取りBOOL
値を返します。
case contains
A predicate to determine if the left hand side contains the right hand side.
左手側が右手側を含むかを決定する述部。
case between
A predicate to determine if the left hand side lies at or between bounds specified by the right hand side.
左手側が右手側に位置するまたはそれで指定される境界の間であるかを決定する述部。