concat_strs

Crates.ioconcat_strs
lib.rsconcat_strs
version1.0.2
sourcesrc
created_at2020-06-04 00:03:06.759193
updated_at2020-06-04 00:15:57.436285
descriptionMacro for quickly building a String from components.
homepage
repositoryhttps://github.com/9999years/concat_strs
max_upload_size
id249844
size9,364
Rebecca Turner (9999years)

documentation

README

concat_strs

docs.rs crates.io license: AGPL-3.0 github.com/9999years/concat_strs

Provides the concat_strs! macro, which allows quickly building a String from a number of components.

Example usage:

use concat_strs::concat_strs;

assert_eq!(
    "foo_bar_3.0",
    concat_strs!(
        "foo",
        '_',
        "bar",
        '_',
        3.0,
    )
);

This is the fastest way to build a string from components.

Commit count: 7

cargo fmt