is there an official short name for kotlinx-serialization, one that is valid as a package name? `kxs...
c
is there an official short name for kotlinx-serialization, one that is valid as a package name?
kxser
seems to be used by some libs but imo thats not very catchy.
kotlinxserialization
is hard to read. can anyone think of something nicer?
e
What do you plan to use it for? I typically just make a
serialization
package
c
i currently have a
KotlinxSerializationMapper
and i need to put that into a maven package, and a java package
(i also have such a mapper for jackson)
serialization
would apply to the jackson mapper too
e
serialization.kotlinx
? could be analogous with
serialization.jackson
for the other one..
r
Just KotlinX?
c
both great ideas that work for my use case, thanks!
e
What does the mapper do, anyway? 🙂
Started out writing a library to collect common use-case serializers.. Wondering if this is something people would use.
c
what does it do? currently nothing because I noticed that I need to refactor before i can add kotlinx support :)
e
😁
c
its part of my super simple rest web server: https://github.com/christophsturm/restaurant