Command Node
abstract class CommandNode<S>(val name: String, val command: Command<S>?, val requirement: (S) -> Boolean, val redirect: CommandNode<S>?, val forks: Boolean, val children: Map<String, CommandNode<S>>) : Comparable<CommandNode<S>>
Inheritors
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract suspend fun listSuggestions(context: CommandContext<S>, builder: SuggestionsBuilder): Suggestions
Link copied to clipboard
Converts the given CommandNode with source type S to an CommandNode with source type R.
Link copied to clipboard