me.jakejmattson.kutils.api.extensions.stdlib.CharacterExtensions.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.stdlib
fun Char.isDigitOrPeriod() = this.isDigit() || this == '.'
© 2015 - 2024 Weber Informatics LLC | Privacy Policy