This release adds the str_split
macro, for splitting a constant string into a constant array of strings, requiring the nightly compiler and "more_str_macros"
crate feature.
Changelog
0.2.26
Added "more_str_macros"
crate feature.
Added str_split
macro, conditional on the "more_str_macros"
feature.
Added char
pattern support to str_replace
.
0.2.25
Fixed the clippy::double_parens
(false positive) warning by encoding the &'static str
type annotation some other way.
Made SplicedStr
, Formatting
, and NumberFormatting
derive Eq
.
0.2.24
Fixed error that caused formatting macros not to be usable in statement position.
0.2.23
Added type annotations to concatp
, concatcp
, formatc
and formatcp
macros to help IDEs infer the type.