* BsonLessThanOperatorId returns the OID of the < operator. */
| 6633 | * BsonLessThanOperatorId returns the OID of the <bson> < <bson> operator. |
| 6634 | */ |
| 6635 | Oid |
| 6636 | BsonLessThanOperatorId(void) |
| 6637 | { |
| 6638 | return GetCoreBinaryOperatorId(&Cache.BsonLessThanOperatorId, |
| 6639 | BsonTypeId(), "<", BsonTypeId()); |
| 6640 | } |
| 6641 | |
| 6642 | |
| 6643 | /* |
no test coverage detected