3 unstable releases
Uses old Rust 2015
0.1.2 | Nov 23, 2021 |
---|---|
0.1.0 | Jul 28, 2016 |
0.0.0 | Jul 28, 2016 |
#881 in Rust patterns
813 downloads per month
Used in 8 crates
(7 directly)
9KB
55 lines
round
This crate provides utilities to (round, round_up, round_down) your floats with precision from 1 to 10.
Usage
In your project's Cargo.toml include the package name and version, like so:
[dependencies]
round = "0.1.0" // or any latest version on crates.io
examples
extern crate round;
use round::{round, round_up, round_down};
fn main() {
// basic rounding
let test_n = round(8.9534, 2); // 8.95
let test_x = 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, round_up, round_down) if your chosen number of decimals (i32) is negative or greater than 10.
API
round, roud_up, round_down 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.