macro_rules! cow_borrowed {
($val:expr) => { ... };
}
Expand description
Alias for Cow::Borrowed
, because that’s used a million times so shortening it is nice.
Makes the code more readable.
macro_rules! cow_borrowed {
($val:expr) => { ... };
}
Alias for Cow::Borrowed
, because that’s used a million times so shortening it is nice.
Makes the code more readable.