Expand description
Various T!s representing a tokens with Kind::Delim, but each represents a discrete character.
Structs§
- And
- Represents a token with Kind::Delim that has the char
&. Use T![&] to refer to this. - At
- Represents a token with Kind::Delim that has the char
@. Use T![@] to refer to this. Not to be conused with T![AtKeyword] which represents a token with Kind::AtKeyword. - Backtick
- Represents a token with Kind::Delim that has the char ```. Use T![‘`’] to refer to this.
- Bang
- Represents a token with Kind::Delim that has the char
!. Use T![!] to refer to this. - Caret
- Represents a token with Kind::Delim that has the char
^. Use T![^] to refer to this. - Dash
- Represents a token with Kind::Delim that has the char
-. Use T![-] to refer to this. - Dollar
- Represents a token with Kind::Delim that has the char
$. Use T![$] to refer to this. - Dot
- Represents a token with Kind::Delim that has the char
.. Use T![.] to refer to this. - Eq
- Represents a token with Kind::Delim that has the char
=. Use T![=] to refer to this. - Gt
- Represents a token with Kind::Delim that has the char
>. Use T![>] to refer to this. - Hash
- Represents a token with Kind::Delim that has the char
#. Use T![#] to refer to this. Not to be conused with T![Hash] which represents a token with Kind::Hash. - Lt
- Represents a token with Kind::Delim that has the char
<. Use T![<] to refer to this. - Or
- Represents a token with Kind::Delim that has the char
|. Use T![|] to refer to this. - Percent
- Represents a token with Kind::Delim that has the char
%. Use T![%] to refer to this. - Plus
- Represents a token with Kind::Delim that has the char
+. Use T![+] to refer to this. - Question
- Represents a token with Kind::Delim that has the char
?. Use T![?] to refer to this. - Slash
- Represents a token with Kind::Delim that has the char
/. Use T![/] to refer to this. - Star
- Represents a token with Kind::Delim that has the char
*. Use T![*] to refer to this. - Tilde
- Represents a token with Kind::Delim that has the char
~. Use T![~] to refer to this. - Underscore
- Represents a token with Kind::Delim that has the char
_. Use T![_] to refer to this.