Definition at line 189 of file predicates.h.
◆ between_predicate()
template<typename FROM_TYPE, typename TO_TYPE>
hazelcast::client::query::between_predicate::between_predicate |
( |
hazelcast_client & | client, |
|
|
const std::string & | attribute_name, |
|
|
const FROM_TYPE & | from, |
|
|
const TO_TYPE & | to ) |
|
inline |
- Parameters
-
attributeName | The attribute whose value shall be compared to. |
- Template Parameters
-
from | The starting value to match (start is inclusive). |
to | The ending value to match (end is inclusive). |
Definition at line 198 of file predicates.h.
202 : named_predicate(client, attribute_name)
203 {
204 out_stream.write_object(to);
205 out_stream.write_object(from);
206 }
The documentation for this class was generated from the following file: