Definition at line 282 of file predicates.h.
◆ in_predicate() [1/2]
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 291 of file predicates.h.
294 : multi_predicate(attribute_name, client, values...)
295 {}
◆ in_predicate() [2/2]
template<typename T>
hazelcast::client::query::in_predicate::in_predicate |
( |
hazelcast_client & | client, |
|
|
const std::string & | attribute_name, |
|
|
const std::vector< T > & | 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 303 of file predicates.h.
306 : multi_predicate(attribute_name, client, values)
307 {}
The documentation for this class was generated from the following file: