``` fun <T>hasCommandType(classType: Cla...
# getting-started
b
Copy code
fun <T>hasCommandType(classType: Class<T>): Boolean {

        return queue.any { it is classType }
    }