27auto fmt::formatter<func_sketch::expressions::BinaryExpression>::format(
29 format_context& context)
const -> format_context::iterator {
30 return fmt::format_to(context.out(),
"{}({}, {})",
31 value.operator_object.name(), *value.left, *value.right);