#[no_mangle]
pub unsafe extern "C" fn pineappl_grid_scale(
    grid: *mut Grid,
    factor: f64
)
Expand description

Scale all grids in grid by factor.

§Safety

If grid does not point to a valid Grid object, for example when grid is the null pointer, this function is not safe to call.