* Similar to BsonValueAsDouble but doesn't throw error if BSON_DECIMAL_128 * is out of range of double */
| 539 | * is out of range of double |
| 540 | */ |
| 541 | double |
| 542 | BsonValueAsDoubleQuiet(const bson_value_t *value) |
| 543 | { |
| 544 | bool quiet = true; |
| 545 | return BsonValueAsDoubleCore(value, quiet); |
| 546 | } |
| 547 | |
| 548 | |
| 549 | /* |
no test coverage detected