round crates.io

This crate provides utilities to (round, roundup, rounddown) your floats with precision from 1 to 10.

Usage

In your project's Cargo.toml include the package name and version, like so: rust [dependencies] round = "0.1.0" // or any latest version on crates.io

examples

```rust extern crate round; use round::{round, roundup, rounddown};

fn main() { // basic rounding let testn = round(8.9534, 2); // 8.95 let testx = round(8.9536, 3); // 8.954 let test_y = round(8.9536, -1); // 8.95

// rounding up
let test_j = round_up(8.9534, 2); // 8.96
let test_k = round_up(8.9536, 3); // 8.954

// rounding down
let test_l = round_down(8.9534, 2); // 8.95
let test_m = round_down(8.9536, 3); // 8.953

} ```

defaults to 2 decimal rounding (round, roundup, rounddown) if your chosen number of decimals (i32) is negative or greater than 10.

API

round, roudup, rounddown from 0 to 10 precision

Raison d'etre

Turns out I am in need of this type of operation almost every day. Hopefully it will save you some time as well.

License

This library is distributed with the GPLv2 software license.

``` round (rust library - crate) Copyright (C) 2016 - Mohamed Hayibor

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

```