Definition at line 149 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 157 of file predicates.h.
159 : named_predicate(client, attribute_name) {
160 out_stream.write_object(to);
161 out_stream.write_object(from);
The documentation for this class was generated from the following file: