#output #points #gpoint #g-point

gpoint

Wrapper for using libc’s printf("%g") format for your floating point output

7 releases

0.2.1 Aug 31, 2021
0.2.0 Aug 27, 2021
0.1.4 Aug 27, 2021
0.1.3 Jul 12, 2021

#166 in Value formatting

Download history 5815/week @ 2024-12-09 6014/week @ 2024-12-16 6019/week @ 2024-12-23 5608/week @ 2024-12-30 5367/week @ 2025-01-06 5725/week @ 2025-01-13 4851/week @ 2025-01-20 5265/week @ 2025-01-27 4502/week @ 2025-02-03 3723/week @ 2025-02-10 3769/week @ 2025-02-17 3755/week @ 2025-02-24 3511/week @ 2025-03-03 3637/week @ 2025-03-10 2413/week @ 2025-03-17 1404/week @ 2025-03-24

11,449 downloads per month
Used in scx_lavd

MIT/Apache

8KB
166 lines

"G" Format for Floating Point

Prints floating-point exactly like a printf("%g", value), using a Display implementation via libc's printf()'s .

Usage

Use the crates.io repository; add this to your Cargo.toml along with the rest of your dependencies:

[dependencies]
gpoint = "0.2"

Then wrap your f32 or f64 with a GPoint:

use gpoint::GPoint;

println!("answer: {}", GPoint(42.));

See the API documentation for further details.

Dependencies

~44KB