| 
    MongoDB C++ Driver
    mongocxx-3.6.2
    
   | 
 
Class representing the optional arguments to mongocxx::collection::count_documents. More...
#include <count.hpp>
Public Member Functions | |
| count & | collation (bsoncxx::document::view_or_value collation) | 
| Sets the collation for this operation.  More... | |
| const stdx::optional< bsoncxx::document::view_or_value > & | collation () const | 
| Retrieves the current collation for this operation.  More... | |
| count & | hint (class hint index_hint) | 
| Sets the index to use for this operation.  More... | |
| const stdx::optional< class hint > & | hint () const | 
| Gets the current hint.  More... | |
| count & | limit (std::int64_t limit) | 
| Sets the maximum number of documents to count.  More... | |
| const stdx::optional< std::int64_t > & | limit () const | 
| Gets the current limit.  More... | |
| count & | max_time (std::chrono::milliseconds max_time) | 
| Sets the maximum amount of time for this operation to run (server-side) in milliseconds.  More... | |
| const stdx::optional< std::chrono::milliseconds > & | max_time () const | 
| The current max_time setting.  More... | |
| count & | skip (std::int64_t skip) | 
| Sets the number of documents to skip before counting documents.  More... | |
| const stdx::optional< std::int64_t > & | skip () const | 
| Gets the current number of documents to skip.  More... | |
| count & | read_preference (class read_preference rp) | 
| Sets the read_preference for this operation.  More... | |
| const stdx::optional< class read_preference > & | read_preference () const | 
| The current read_preference for this operation.  More... | |
Class representing the optional arguments to mongocxx::collection::count_documents.
| const stdx::optional<bsoncxx::document::view_or_value>& mongocxx::options::count::collation | ( | ) | const | 
Retrieves the current collation for this operation.
| count& mongocxx::options::count::collation | ( | bsoncxx::document::view_or_value | collation | ) | 
Sets the collation for this operation.
| collation | The new collation. | 
| const stdx::optional<class hint>& mongocxx::options::count::hint | ( | ) | const | 
Gets the current hint.
Sets the index to use for this operation.
| index_hint | Object representing the index to use. | 
| const stdx::optional<std::int64_t>& mongocxx::options::count::limit | ( | ) | const | 
Gets the current limit.
| count& mongocxx::options::count::limit | ( | std::int64_t | limit | ) | 
Sets the maximum number of documents to count.
| limit | The max number of documents to count. | 
| const stdx::optional<std::chrono::milliseconds>& mongocxx::options::count::max_time | ( | ) | const | 
The current max_time setting.
| count& mongocxx::options::count::max_time | ( | std::chrono::milliseconds | max_time | ) | 
Sets the maximum amount of time for this operation to run (server-side) in milliseconds.
| max_time | The max amount of time (in milliseconds). | 
| const stdx::optional<class read_preference>& mongocxx::options::count::read_preference | ( | ) | const | 
The current read_preference for this operation.
| count& mongocxx::options::count::read_preference | ( | class read_preference | rp | ) | 
Sets the read_preference for this operation.
| rp | The new read_preference. | 
| const stdx::optional<std::int64_t>& mongocxx::options::count::skip | ( | ) | const | 
Gets the current number of documents to skip.
| count& mongocxx::options::count::skip | ( | std::int64_t | skip | ) | 
Sets the number of documents to skip before counting documents.
| skip | The number of documents to skip. | 
 1.8.18