char-buf

Crates.iochar-buf
lib.rschar-buf
version0.1.2
sourcesrc
created_at2023-10-06 11:47:02.948972
updated_at2024-02-12 03:04:39.467374
descriptionA writable, fixed-length `char` buffer usable in `no_std` environments.
homepage
repositoryhttps://gitlab.com/kkitahara/char-buf-rs
max_upload_size
id995014
size23,835
(kkitahara5101)

documentation

https://docs.rs/char-buf

README

crates.io docs.rs pipeline status coverage report

CharBuf

A writable, fixed-length char buffer usable in no_std environments.

use char_buf::CharBuf;
use core::fmt::Write;

// `CharBuf` with capacity `8`
type CharBuf8 = CharBuf<8>;

let mut w = CharBuf8::new();
write!(w, "x{:?}x", [1, 2]).unwrap();

assert_eq!(w, "x[1, 2]x");

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


© 2023–2024 Koichi Kitahara

Commit count: 5

cargo fmt