Lines Matching full:paste
10 mod paste; module
240 /// Paste identifiers together.
242 /// Within the `paste!` macro, identifiers inside `[<` and `>]` are concatenated together to form a
245 /// This is similar to the [`paste`] crate, but with pasting feature limited to identifiers
252 /// use kernel::macro::paste;
256 /// paste! {
296 /// use kernel::macro::paste;
300 /// kernel::macros::paste! {
328 /// [`paste`]: https://docs.rs/paste/
330 pub fn paste(input: TokenStream) -> TokenStream { in paste() function
332 paste::expand(&mut tokens); in paste()