C
G
N
P
S
T
C
- com.kotlindiscord.kord.extensions.parser - package com.kotlindiscord.kord.extensions.parser
- com.kotlindiscord.kord.extensions.parser.tokens - package com.kotlindiscord.kord.extensions.parser.tokens
- consumeNumber(java.lang.Integer) - function in com.kotlindiscord.kord.extensions.parser.Cursor
- Consume amount characters from this cursor, returning them as a String.
- consumeRemaining() - function in com.kotlindiscord.kord.extensions.parser.Cursor
- Iterate over the rest of the string, returning the result.
- consumeRemaining() - function in com.kotlindiscord.kord.extensions.parser.StringParser
- Consume whatever is left in the cursor, setting it to the end of its input string.
- consumeWhile(kotlin.jvm.functions.Function1) - function in com.kotlindiscord.kord.extensions.parser.Cursor
- Iterate over the rest of the string as long as the predicate returns
true, returning the result. - consumeWhile(kotlin.jvm.functions.Function1) - function in com.kotlindiscord.kord.extensions.parser.StringParser
- Consume characters from the cursor while the predicate returns
true, and return those characters joined into a String. - Cursor - class in com.kotlindiscord.kord.extensions.parser
- Class representing an iteration position over a given string, with convenience functions.