|
template<typename ... Args> |
| in_predicate (hazelcast_client &client, const std::string &attribute_name, const Args &...values) |
| The type of Args should be able to be serialized. More...
|
|
template<typename ... Args> |
| multi_predicate (hazelcast_client &client, const Args &...values) |
|
template<typename ... Args> |
| multi_predicate (const std::string attribute_name, hazelcast_client &client, const Args &...values) |
|
| base_predicate (hazelcast_client &client) |
|
Definition at line 223 of file predicates.h.
◆ in_predicate()
template<typename ... Args>
hazelcast::client::query::in_predicate::in_predicate |
( |
hazelcast_client & |
client, |
|
|
const std::string & |
attribute_name, |
|
|
const Args &... |
values |
|
) |
| |
|
inline |
The type of Args should be able to be serialized.
- Parameters
-
attributeName | The attribute whose value shall be compared to. |
- Template Parameters
-
value | The values to search for |
Definition at line 231 of file predicates.h.
232 : multi_predicate(attribute_name, client, values...) {}
The documentation for this class was generated from the following file: