summaryrefslogtreecommitdiff
path: root/src/mongo/db/matcher/expression_algo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/matcher/expression_algo.h')
-rw-r--r--src/mongo/db/matcher/expression_algo.h50
1 files changed, 25 insertions, 25 deletions
diff --git a/src/mongo/db/matcher/expression_algo.h b/src/mongo/db/matcher/expression_algo.h
index 0ee4459c56f..baccf557104 100644
--- a/src/mongo/db/matcher/expression_algo.h
+++ b/src/mongo/db/matcher/expression_algo.h
@@ -30,34 +30,34 @@
namespace mongo {
- class MatchExpression;
+class MatchExpression;
namespace expression {
- /**
- * Returns true if the documents matched by 'lhs' are a subset of the documents matched by
- * 'rhs', i.e. a document matched by 'lhs' must also be matched by 'rhs', and false otherwise.
- *
- * With respect to partial indexes, 'lhs' corresponds to the query specification and 'rhs'
- * corresponds to the filter specification.
- *
- * e.g.
- *
- * Suppose that
- *
- * lhs = { x : 4 }
- * rhs = { x : { $lte : 5 } }
- *
- * ==> true
- *
- * Suppose that
- *
- * lhs = { x : { $gte: 6 } }
- * rhs = { x : 7 }
- *
- * ==> false
- */
- bool isSubsetOf(const MatchExpression* lhs, const MatchExpression* rhs);
+/**
+ * Returns true if the documents matched by 'lhs' are a subset of the documents matched by
+ * 'rhs', i.e. a document matched by 'lhs' must also be matched by 'rhs', and false otherwise.
+ *
+ * With respect to partial indexes, 'lhs' corresponds to the query specification and 'rhs'
+ * corresponds to the filter specification.
+ *
+ * e.g.
+ *
+ * Suppose that
+ *
+ * lhs = { x : 4 }
+ * rhs = { x : { $lte : 5 } }
+ *
+ * ==> true
+ *
+ * Suppose that
+ *
+ * lhs = { x : { $gte: 6 } }
+ * rhs = { x : 7 }
+ *
+ * ==> false
+ */
+bool isSubsetOf(const MatchExpression* lhs, const MatchExpression* rhs);
} // namespace expression
} // namespace mongo