macro_rules! rcstr {
($s:expr) => { ... };
}Expand description
Create an rcstr from a string literal.
allocates the RcStr inline when possible otherwise uses a LazyLock to manage the allocation.
macro_rules! rcstr {
($s:expr) => { ... };
}Create an rcstr from a string literal.
allocates the RcStr inline when possible otherwise uses a LazyLock to manage the allocation.