bodiam
05/18/2020, 10:52 AMreturn doubleArrayOf(base, tokenSort, tokenSet).max()!!.toInt()
And I'd like to get rid of the !!
here, especially since I know this call will never return null. Any suggestions on how to do this?diesieben07
05/18/2020, 10:59 AMmaxOf(base, tokenSort, tokenSet).toInt()
. Until 1.4 is out proper, using !!
is fine, I guessbodiam
05/18/2020, 10:59 AM!!
, that's all 🙂