https://kotlinlang.org logo
Title
k

karelpeeters

01/19/2019, 6:29 PM
Well what do you want it to do? As far as I can tell there's no code yet.
a

altavir

01/19/2019, 6:37 PM
Not my idea, I am only forwarding it. @Lamberto Basti wants to create a mpp library for some things missing from kotlin, but present in java. See this discussion: https://discuss.kotlinlang.org/t/would-it-make-sense-to-translate-whats-missing-of-the-java-standard-library-in-kotlin-common-code/11218/24
I can implement some things, but of course it won't make sense without broader community support.
l

Lamberto Basti

01/19/2019, 6:38 PM
It has been created today so we are just starting. I want it to be community powered. Have a look at the issues as well.
a

altavir

01/19/2019, 6:38 PM
I am not sure it will fly, but we won't know without trying.
😎 1
k

karelpeeters

01/19/2019, 6:41 PM
There's a similar project here: https://korlibs.soywiz.com/
In particular take a look at kds.
a

altavir

01/19/2019, 6:43 PM
Then it is probably better to contribute to it instead.
@Lamberto Basti korio has at least some file and stream operations.
l

Lamberto Basti

01/19/2019, 7:36 PM
I'm having a look at it. It is definitely interesting but this library seems to aim for specific tasks like audio, graphics and more. There is something really useful like sockets and date/time libraries but the rest is something that goes far beyond the purpose of the library I'm trying to build.
k

karelpeeters

01/19/2019, 9:13 PM
Yeah I mostly mean the collection part. They have some cool stuff (like
IntIntMap
that avoids boxing) and all the usuals:
Queue
,
Stack
, ...