Definition at line 165 of file predicates.h.
◆ greater_less_predicate()
template<typename T >
hazelcast::client::query::greater_less_predicate::greater_less_predicate |
( |
hazelcast_client & |
client, |
|
|
const std::string & |
attribute_name, |
|
|
const T & |
value, |
|
|
bool |
is_equal, |
|
|
bool |
is_less |
|
) |
| |
|
inline |
- Parameters
-
attributeName | The attribute whose value shall be compared to. |
- Template Parameters
-
value | The value to compare |
- Parameters
-
equal | Allow equal matching |
less | If true, allow "less than" matching otherwise do "greater
than" matching |
Definition at line 176 of file predicates.h.
181 : named_predicate(client, attribute_name)
183 out_stream.write_object(value);
184 out_stream.write(is_equal);
185 out_stream.write(is_less);
The documentation for this class was generated from the following file: