| 83 | inline int require_i32(const Value & object, const std::string & key) { |
| 84 | return static_cast<int>(require_i64(object, key)); |
| 85 | } |
| 86 | |
| 87 | inline float require_f32(const Value & object, const std::string & key) { |
| 88 | return object.require(key).as_f32(); |
| 89 | } |
| 90 |
no test coverage detected