| 226 | } |
| 227 | |
| 228 | Formatter format_integer() { |
| 229 | return [] (size_t idx, const std::string& vs) -> std::string { |
| 230 | auto v = value_to_float(vs); |
| 231 | return std::to_string(int(v)); |
| 232 | }; |
| 233 | } |
| 234 | |
| 235 | ReturnCode format_configure_integer( |
| 236 | const Expr* expr, |
no test coverage detected