Crates.io | fish-printf |
lib.rs | fish-printf |
version | 0.2.1 |
source | src |
created_at | 2024-06-09 19:34:38.933862 |
updated_at | 2024-09-23 18:25:09.05263 |
description | printf implementation, based on musl |
homepage | |
repository | https://github.com/fish-shell/fish-shell |
max_upload_size | |
id | 1266588 |
size | 111,699 |
The printf implementation used in fish-shell, based on musl printf.
Licensed under the MIT license.
Run cargo add fish-printf
to add this crate to your Cargo.toml
file.
fish-printf attempts to match the C standard for printf. It supports the following features:
%n
modifier for counting characters written.fish-printf does not support positional arguments, such as printf("%2$d", 1, 2)
.
Prefixes like l
or ll
are recognized, but only used for validating the format string.
The size of integer values is taken from the argument type.
fish-printf can output to an std::fmt::Write
object, or return a string.
For reasons related to fish-shell, fish-printf has a feature "widestring" which uses the widestring crate. This is off by default. If enabled, run cargo add widestring
to add the widestring crate.
use fish_printf::sprintf;
// Create a `String` from a format string.
let s = sprintf!("%0.5g", 123456.0) // 1.2346e+05
// Append to an existing string.
let mut s = String::new();
sprintf!(=> &mut s, "%0.5g", 123456.0) // 1.2346e+05
See the crate documentation for additional examples.