Vsevolod Tolstopyatov

Results 304 comments of Vsevolod Tolstopyatov

Unless there are compelling use cases, we would prefer not to introduce such a feature: it's way too easy to misuse it and start ignoring backend errors or API misconfiguration....

I honestly was sure that we do fail on duplicate keys and that the request was about **allowing** duplicate keys, thus misreading the sentence. The request indeed is reasonable and...

Are you encountering this error when running tests from IDE or from the console? Checked clean build on my machine: ``` qwwdfsad@qwwdfsad kotlinx.serialization % java -version java version "11.0.1" 2018-10-16...

>I'd be happy to contribute to one We would be happy to accept your contribution! The main rationale behind #350 not getting merged is our lack of time along with...

@herrjemand could you please also elaborate on what you have been using prior to kotlinx-serialization? I've checked Moshi, GSON and Jackson, none of them supports this functionality by default. Jackson...

>Why this simple method cannot be simply a static method of a corresponding serializable class? Because Kotlin does not have the notion of static methods. Once it's here, we may...

>Well, it is internal implementation It is not, it's part of the public API surface. Serializer for any class can be retrieved using this method, e.g.: ``` @Serializable class Box(...)...

Hi, we frequently do tune our performance and try to stay on par with existing solutions (though we do not talk about it much as advertising performance wins on synthetic...

Thanks, this is really helpful! This is indeed a IO stream integration inefficiency, we'll see what we can do here