|
100 | 100 | * `'ident`: named lifetime or loop label. See [Lifetimes], [Loops (Loops Labels)].
|
101 | 101 | * `…u8`, `…i32`, `…f64`, `…usize`, …: numeric literal of specific type.
|
102 | 102 | * `"…"`: string literal. See [Strings].
|
103 |
| -* `r"…"`, `r#"…"#`, `r##"…"##`, …: raw string literal. |
104 |
| -* `b"…"`: byte string literal. |
105 |
| -* `rb"…"`, `rb#"…"#`, `rb##"…"##`, …: raw byte string literal. |
| 103 | +* `r"…"`, `r#"…"#`, `r##"…"##`, …: raw string literal, escape characters are not processed. See [Reference (Raw String Literals)]. |
| 104 | +* `b"…"`: byte string literal, constructs a `[u8]` instead of a string. See [Reference (Byte String Literals)]. |
| 105 | +* `br"…"`, `br#"…"#`, `br##"…"##`, …: raw byte string literal, combination of raw and byte string literal. See [Reference (Raw Byte String Literals)]. |
106 | 106 | * `'…'`: character literal. See [Primitive Types (`char`)].
|
107 | 107 | * `b'…'`: ASCII byte literal.
|
108 | 108 |
|
|
219 | 219 | [Primitive Types (Tuple Indexing)]: primitive-types.html#tuple-indexing
|
220 | 220 | [Primitive Types (Tuples)]: primitive-types.html#tuples
|
221 | 221 | [Raw Pointers]: raw-pointers.html
|
| 222 | +[Reference (Byte String Literals)]: ../reference.html#byte-string-literals |
| 223 | +[Reference (Raw Byte String Literals)]: ../reference.html#raw-byte-string-literals |
| 224 | +[Reference (Raw String Literals)]: ../reference.html#raw-string-literals |
222 | 225 | [References and Borrowing]: references-and-borrowing.html
|
223 | 226 | [Strings]: strings.html
|
224 | 227 | [Structs (Update syntax)]: structs.html#update-syntax
|
|
0 commit comments