
com.yukihirai0505.iService.utils.NumberUtil.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iservice_2.11 Show documentation
Show all versions of iservice_2.11 Show documentation
A Scala library for Instagram
The newest version!
package com.yukihirai0505.iService.utils
/**
* Created by Yuky on 2017/09/28.
*/
object NumberUtil {
def getRandomInt(min: Int = 2000, max: Int = 10000): Long = {
(Math.floor(Math.random() * (max - min + 1)) + min).toLong
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy