logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

typedef enum {

Author

       MongoDB, Inc

Description

       These  flags  correspond to the MongoDB wire protocol. They may be bitwise or'd together. They may change
       the number of documents that are removed during a remove command.

Flag Values

                       ┌─────────────────────────────┬───────────────────────────────────────┐
                       │ MONGOC_REMOVE_NONE          │ Specify   no   removal   flags.   All │
                       │                             │ matching documents will be removed.   │
                       ├─────────────────────────────┼───────────────────────────────────────┤
                       │ MONGOC_REMOVE_SINGLE_REMOVE │ Only   remove   the   first  matching │
                       │                             │ document from the selector.           │
                       └─────────────────────────────┴───────────────────────────────────────┘

Synopsis

          typedef enum {
             MONGOC_REMOVE_NONE = 0,
             MONGOC_REMOVE_SINGLE_REMOVE = 1 << 0,
          } mongoc_remove_flags_t;

See Also