numf 0.4.2

Convert numbes between formats
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Format numbers
//!
//! This crate contains several utility functions for formatting numbers
//! into other systems, such as converting decimal numbers to hexadecimal
//! , and back.
//!
//! See [format::Format] for supported formats.
//!
//! Note that this crate is primarily intended to be used as a executable.
//!
//! Highlights:
//! * [format::numf_parser]
//! * [format::numf_parser_str]
//! * [format::Format::format]
//! * [format::Format::format_str]

pub mod format;