All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlinbase.lorenwang.tools.extend.KttlwExtendInt.kt Maven / Gradle / Ivy

The newest version!
package kotlinbase.lorenwang.tools.extend

/**
 * 功能作用:整型相关函数扩展
 * 创建时间:2019-11-14 下午 23:28:13
 * 创建人:王亮(Loren wang)
 * 思路:
 * 方法:
 * 注意:
 * 修改人:
 * 修改时间:
 * 备注:
 */


/**
 * 获取非空数据
 */
fun Int?.kttlwGetNotEmptyData(defaultStr: Int): Int {
    return if (this.kttlwIsNull()) {
        defaultStr
    } else {
        this!!
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy