summaryrefslogtreecommitdiff
path: root/src/mongo/bson/mutable/const_element-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/bson/mutable/const_element-inl.h')
-rw-r--r--src/mongo/bson/mutable/const_element-inl.h312
1 files changed, 155 insertions, 157 deletions
diff --git a/src/mongo/bson/mutable/const_element-inl.h b/src/mongo/bson/mutable/const_element-inl.h
index af059fd37a2..562a47c16a0 100644
--- a/src/mongo/bson/mutable/const_element-inl.h
+++ b/src/mongo/bson/mutable/const_element-inl.h
@@ -30,212 +30,210 @@
namespace mongo {
namespace mutablebson {
- inline ConstElement::ConstElement(const Element& basis)
- : _basis(basis) {}
+inline ConstElement::ConstElement(const Element& basis) : _basis(basis) {}
- inline ConstElement ConstElement::leftChild() const {
- return _basis.leftChild();
- }
+inline ConstElement ConstElement::leftChild() const {
+ return _basis.leftChild();
+}
- inline ConstElement ConstElement::rightChild() const {
- return _basis.rightChild();
- }
+inline ConstElement ConstElement::rightChild() const {
+ return _basis.rightChild();
+}
- inline bool ConstElement::hasChildren() const {
- return _basis.hasChildren();
- }
+inline bool ConstElement::hasChildren() const {
+ return _basis.hasChildren();
+}
- inline ConstElement ConstElement::leftSibling(size_t distance) const {
- return _basis.leftSibling(distance);
- }
+inline ConstElement ConstElement::leftSibling(size_t distance) const {
+ return _basis.leftSibling(distance);
+}
- inline ConstElement ConstElement::rightSibling(size_t distance) const {
- return _basis.rightSibling(distance);
- }
+inline ConstElement ConstElement::rightSibling(size_t distance) const {
+ return _basis.rightSibling(distance);
+}
- inline ConstElement ConstElement::parent() const {
- return _basis.parent();
- }
+inline ConstElement ConstElement::parent() const {
+ return _basis.parent();
+}
- inline ConstElement ConstElement::findNthChild(size_t n) const {
- return _basis.findNthChild(n);
- }
+inline ConstElement ConstElement::findNthChild(size_t n) const {
+ return _basis.findNthChild(n);
+}
- inline ConstElement ConstElement::operator[](size_t n) const {
- return _basis[n];
- }
+inline ConstElement ConstElement::operator[](size_t n) const {
+ return _basis[n];
+}
- inline ConstElement ConstElement::findFirstChildNamed(StringData name) const {
- return _basis.findFirstChildNamed(name);
- }
+inline ConstElement ConstElement::findFirstChildNamed(StringData name) const {
+ return _basis.findFirstChildNamed(name);
+}
- inline ConstElement ConstElement::operator[](StringData name) const {
- return _basis[name];
- }
+inline ConstElement ConstElement::operator[](StringData name) const {
+ return _basis[name];
+}
- inline ConstElement ConstElement::findElementNamed(StringData name) const {
- return _basis.findElementNamed(name);
- }
+inline ConstElement ConstElement::findElementNamed(StringData name) const {
+ return _basis.findElementNamed(name);
+}
- inline size_t ConstElement::countSiblingsLeft() const {
- return _basis.countSiblingsLeft();
- }
+inline size_t ConstElement::countSiblingsLeft() const {
+ return _basis.countSiblingsLeft();
+}
- inline size_t ConstElement::countSiblingsRight() const {
- return _basis.countSiblingsRight();
- }
+inline size_t ConstElement::countSiblingsRight() const {
+ return _basis.countSiblingsRight();
+}
- inline size_t ConstElement::countChildren() const {
- return _basis.countChildren();
- }
+inline size_t ConstElement::countChildren() const {
+ return _basis.countChildren();
+}
- inline bool ConstElement::hasValue() const {
- return _basis.hasValue();
- }
+inline bool ConstElement::hasValue() const {
+ return _basis.hasValue();
+}
- inline const BSONElement ConstElement::getValue() const {
- return _basis.getValue();
- }
+inline const BSONElement ConstElement::getValue() const {
+ return _basis.getValue();
+}
- inline double ConstElement::getValueDouble() const {
- return _basis.getValueDouble();
- }
+inline double ConstElement::getValueDouble() const {
+ return _basis.getValueDouble();
+}
- inline StringData ConstElement::getValueString() const {
- return _basis.getValueString();
- }
+inline StringData ConstElement::getValueString() const {
+ return _basis.getValueString();
+}
- inline BSONObj ConstElement::getValueObject() const {
- return _basis.getValueObject();
- }
+inline BSONObj ConstElement::getValueObject() const {
+ return _basis.getValueObject();
+}
- inline BSONArray ConstElement::getValueArray() const {
- return _basis.getValueArray();
- }
+inline BSONArray ConstElement::getValueArray() const {
+ return _basis.getValueArray();
+}
- inline bool ConstElement::isValueUndefined() const {
- return _basis.isValueUndefined();
- }
+inline bool ConstElement::isValueUndefined() const {
+ return _basis.isValueUndefined();
+}
- inline OID ConstElement::getValueOID() const {
- return _basis.getValueOID();
- }
+inline OID ConstElement::getValueOID() const {
+ return _basis.getValueOID();
+}
- inline bool ConstElement::getValueBool() const {
- return _basis.getValueBool();
- }
+inline bool ConstElement::getValueBool() const {
+ return _basis.getValueBool();
+}
- inline Date_t ConstElement::getValueDate() const {
- return _basis.getValueDate();
- }
+inline Date_t ConstElement::getValueDate() const {
+ return _basis.getValueDate();
+}
- inline bool ConstElement::isValueNull() const {
- return _basis.isValueNull();
- }
+inline bool ConstElement::isValueNull() const {
+ return _basis.isValueNull();
+}
- inline StringData ConstElement::getValueSymbol() const {
- return _basis.getValueSymbol();
- }
+inline StringData ConstElement::getValueSymbol() const {
+ return _basis.getValueSymbol();
+}
- inline int32_t ConstElement::getValueInt() const {
- return _basis.getValueInt();
- }
+inline int32_t ConstElement::getValueInt() const {
+ return _basis.getValueInt();
+}
- inline Timestamp ConstElement::getValueTimestamp() const {
- return _basis.getValueTimestamp();
- }
+inline Timestamp ConstElement::getValueTimestamp() const {
+ return _basis.getValueTimestamp();
+}
- inline int64_t ConstElement::getValueLong() const {
- return _basis.getValueLong();
- }
+inline int64_t ConstElement::getValueLong() const {
+ return _basis.getValueLong();
+}
- inline bool ConstElement::isValueMinKey() const {
- return _basis.isValueMinKey();
- }
+inline bool ConstElement::isValueMinKey() const {
+ return _basis.isValueMinKey();
+}
- inline bool ConstElement::isValueMaxKey() const {
- return _basis.isValueMaxKey();
- }
+inline bool ConstElement::isValueMaxKey() const {
+ return _basis.isValueMaxKey();
+}
- inline SafeNum ConstElement::getValueSafeNum() const {
- return _basis.getValueSafeNum();
- }
+inline SafeNum ConstElement::getValueSafeNum() const {
+ return _basis.getValueSafeNum();
+}
- inline int ConstElement::compareWithElement(const ConstElement& other,
- bool considerFieldName) const {
- return _basis.compareWithElement(other, considerFieldName);
- }
-
- inline int ConstElement::compareWithBSONElement(const BSONElement& other,
- bool considerFieldName) const {
- return _basis.compareWithBSONElement(other, considerFieldName);
- }
+inline int ConstElement::compareWithElement(const ConstElement& other,
+ bool considerFieldName) const {
+ return _basis.compareWithElement(other, considerFieldName);
+}
- inline int ConstElement::compareWithBSONObj(const BSONObj& other,
+inline int ConstElement::compareWithBSONElement(const BSONElement& other,
bool considerFieldName) const {
- return _basis.compareWithBSONObj(other, considerFieldName);
- }
+ return _basis.compareWithBSONElement(other, considerFieldName);
+}
+
+inline int ConstElement::compareWithBSONObj(const BSONObj& other, bool considerFieldName) const {
+ return _basis.compareWithBSONObj(other, considerFieldName);
+}
- inline void ConstElement::writeTo(BSONObjBuilder* builder) const {
- return _basis.writeTo(builder);
- }
+inline void ConstElement::writeTo(BSONObjBuilder* builder) const {
+ return _basis.writeTo(builder);
+}
- inline void ConstElement::writeArrayTo(BSONArrayBuilder* builder) const {
- return _basis.writeArrayTo(builder);
- }
+inline void ConstElement::writeArrayTo(BSONArrayBuilder* builder) const {
+ return _basis.writeArrayTo(builder);
+}
- inline bool ConstElement::ok() const {
- return _basis.ok();
- }
+inline bool ConstElement::ok() const {
+ return _basis.ok();
+}
- inline const Document& ConstElement::getDocument() const {
- return _basis.getDocument();
- }
+inline const Document& ConstElement::getDocument() const {
+ return _basis.getDocument();
+}
- inline BSONType ConstElement::getType() const {
- return _basis.getType();
- }
+inline BSONType ConstElement::getType() const {
+ return _basis.getType();
+}
- inline bool ConstElement::isType(BSONType type) const {
- return _basis.isType(type);
- }
+inline bool ConstElement::isType(BSONType type) const {
+ return _basis.isType(type);
+}
- inline StringData ConstElement::getFieldName() const {
- return _basis.getFieldName();
- }
+inline StringData ConstElement::getFieldName() const {
+ return _basis.getFieldName();
+}
- inline Element::RepIdx ConstElement::getIdx() const {
- return _basis.getIdx();
- }
+inline Element::RepIdx ConstElement::getIdx() const {
+ return _basis.getIdx();
+}
- inline std::string ConstElement::toString() const {
- return _basis.toString();
- }
+inline std::string ConstElement::toString() const {
+ return _basis.toString();
+}
- inline bool operator==(const ConstElement& l, const ConstElement& r) {
- return l._basis == r._basis;
- }
+inline bool operator==(const ConstElement& l, const ConstElement& r) {
+ return l._basis == r._basis;
+}
- inline bool operator!=(const ConstElement& l, const ConstElement& r) {
- return !(l == r);
- }
+inline bool operator!=(const ConstElement& l, const ConstElement& r) {
+ return !(l == r);
+}
- inline bool operator==(const Element& l, const ConstElement& r) {
- return ConstElement(l) == r;
- }
+inline bool operator==(const Element& l, const ConstElement& r) {
+ return ConstElement(l) == r;
+}
- inline bool operator!=(const Element& l, const ConstElement& r) {
- return !(l == r);
- }
+inline bool operator!=(const Element& l, const ConstElement& r) {
+ return !(l == r);
+}
- inline bool operator==(const ConstElement& l, const Element& r) {
- return l == ConstElement(r);
- }
+inline bool operator==(const ConstElement& l, const Element& r) {
+ return l == ConstElement(r);
+}
- inline bool operator!=(const ConstElement& l, const Element& r) {
- return !(l == r);
- }
+inline bool operator!=(const ConstElement& l, const Element& r) {
+ return !(l == r);
+}
-} // namespace mutablebson
-} // namespace mongo
+} // namespace mutablebson
+} // namespace mongo