Hullaballoonatic
12/29/2019, 8:43 PMdiesieben07
12/29/2019, 9:06 PMHullaballoonatic
12/29/2019, 9:08 PMInt
and Double
and have access to arithmetic operators? I'm almost certain the answer is no way. But I'd be thrilled if there wereHullaballoonatic
12/29/2019, 9:09 PMoperator fun plus(o: Int) = ...
operator fun plus(o: Double) = ...
Hullaballoonatic
12/29/2019, 9:10 PMfun DoubleArray.toVector() = ...
fun IntArray.toVector() = ...
fun Array<Double>.toVector() = ...
fun Array<Int>.toVector() = ...
fun List<Double>.toVector() = ...
fun List<Int>.toVector() = ...
and so on...Kroppeb
12/29/2019, 9:15 PMstreetsofboston
12/29/2019, 9:59 PMMatteo Mirk
01/16/2020, 8:59 AM