Skip to content

Rust wrapper for using libc's `printf("%g")` format for your floating point output

Notifications You must be signed in to change notification settings

bestouff/gpoint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

"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.

About

Rust wrapper for using libc's `printf("%g")` format for your floating point output

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages