Lines Matching full:paste
14 mod paste; module
301 /// Paste identifiers together.
303 /// Within the `paste!` macro, identifiers inside `[<` and `>]` are concatenated together to form a
306 /// This is similar to the [`paste`] crate, but with pasting feature limited to identifiers and
313 /// use kernel::macro::paste;
317 /// paste! {
357 /// use kernel::macro::paste;
361 /// kernel::macros::paste! {
396 /// kernel::macros::paste! {
407 /// [`paste`]: https://docs.rs/paste/
409 pub fn paste(input: TokenStream) -> TokenStream { in paste() function
411 paste::expand(&mut tokens); in paste()