Hazelcast C++ Client
Hazelcast C++ Client Library
hazelcast::client::query::in_predicate Class Reference
+ Inheritance diagram for hazelcast::client::query::in_predicate:

Public Member Functions

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...
 
- Public Member Functions inherited from hazelcast::client::query::multi_predicate
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)
 
- Public Member Functions inherited from hazelcast::client::query::base_predicate
 base_predicate (hazelcast_client &client)
 

Additional Inherited Members

- Public Attributes inherited from hazelcast::client::query::base_predicate
serialization::object_data_output out_stream
 

Detailed Description

Definition at line 223 of file predicates.h.

Constructor & Destructor Documentation

◆ 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
attributeNameThe attribute whose value shall be compared to.
Template Parameters
valueThe 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: