File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,15 @@ macro-string
9
9
This crate is a helper library for procedural macros to perform eager evaluation
10
10
of standard library string macros like ` concat! ` and ` env! ` in macro input.
11
11
12
+ <table ><tr ><td >
13
+ <b >Supported macros:</b >
14
+ <code >concat!</code >,
15
+ <code >env!</code >,
16
+ <code >include!</code >,
17
+ <code >include_str!</code >,
18
+ <code >stringify!</code >
19
+ </td ></tr ></table >
20
+
12
21
For example, to implement a macro such as the following:
13
22
14
23
``` rust
Original file line number Diff line number Diff line change 10
10
//! evaluation of standard library string macros like `concat!` and `env!` in
11
11
//! macro input.
12
12
//!
13
+ //! <table><tr><td>
14
+ //! <b>Supported macros:</b>
15
+ //! <code>concat!</code>,
16
+ //! <code>env!</code>,
17
+ //! <code>include!</code>,
18
+ //! <code>include_str!</code>,
19
+ //! <code>stringify!</code>
20
+ //! </td></tr></table>
21
+ //!
13
22
//! For example, to implement a macro such as the following:
14
23
//!
15
24
//! ```
You can’t perform that action at this time.
0 commit comments