//tempest2/app.cash.tempest2/Between
Between¶
[jvm]\ data class Between<K>(val startInclusive: K, val endInclusive: K) : KeyCondition<K>
Applies equality condition on the hash key and the following condition on the range key
- a BETWEEN b AND c — true if a is greater than or equal to b, and less than or equal to c.
Constructors¶
Between | [jvm] constructor(startInclusive: K, endInclusive: K) |
Properties¶
Name | Summary |
---|---|
endInclusive | [jvm] val endInclusive: K |
startInclusive | [jvm] val startInclusive: K |