Expand description
Various T!s representing two consecutive tokens that cannot be separated by any other tokens. These are convenient as it can be tricky to parse two consecutive tokens given the default behaviour of the parser is to skip whitespace and comments.
Structsยง
- Caret
Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
^
while the second has the char=
, representing^=
. Use T![^=] to refer to this. - Colon
Colon - Represents a two consecutive tokens with Kind::Colon that cannot be separated by any other token, representing
::
. Use T![::] to refer to this. - Dollar
Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
$
while the second has the char=
, representing$=
. Use T![$=] to refer to this. - Equal
Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
=
while the second has the char=
, representing==
. Use T![==] to refer to this. - Greater
Than Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
>
while the second has the char=
, representing>=
. Use T![>=] to refer to this. - Less
Than Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
<
while the second has the char=
, representing<=
. Use T![<=] to refer to this. - Pipe
Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
|
while the second has the char=
, representing|=
. Use T![|=] to refer to this. - Pipe
Pipe - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
|
while the second has the char|
, representing||
. Use T![||] to refer to this. - Star
Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
*
while the second has the char=
, representing*=
. Use T![*=] to refer to this. - Star
Pipe - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
*
while the second has the char|
, representing*|
. Use T![*|] to refer to this. - Tilde
Equal - Represents a two consecutive tokens with Kind::Delim that cannot be separated by any
other token. The first token has the char
~
while the second has the char=
, representing~=
. Use T![~=] to refer to this.