me.jakejmattson.kutils.api.extensions.jda.RoleExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of KUtils Show documentation
Show all versions of KUtils Show documentation
A Discord bot framework for Kotlin.
@file:Suppress("unused")
package me.jakejmattson.kutils.api.extensions.jda
import net.dv8tion.jda.api.entities.Role
fun Role.isEqualOrHigherThan(other: Role?) = if (other == null) false else this.position >= other.position
© 2015 - 2024 Weber Informatics LLC | Privacy Policy