Crates.io | round |
lib.rs | round |
version | 0.1.2 |
source | src |
created_at | 2016-07-28 00:37:51.400858 |
updated_at | 2021-11-23 03:57:19.302042 |
description | This crate provides utilities to round your floats with precision from 1 to 10. |
homepage | |
repository | https://github.com/mohamedhayibor/round |
max_upload_size | |
id | 5802 |
size | 23,775 |
This crate provides utilities to (round, round_up, round_down) your floats with precision from 1 to 10.
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
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.
round, roud_up, round_down from 0 to 10 precision
Turns out I am in need of this type of operation almost every day. Hopefully it will save you some time as well.
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.