ilya-g

Results 132 comments of ilya-g

I believe it would be reasonable to provide such serializer out-of-the-box if the unix seconds timestamps are indeed widespread in third-party json formats. The question is how to estimate how...

First we need to discuss what behavior we want from `Instant.parse`. In java.time, for example, Instant.parse does support times like 23:59:60Z.

We'd rather avoid introducing another type for representing instants into `kotlinx-datetime` because doing so would not only inflate the API surface significantly, but I believe would also make using the...

There are some challenges that providing a possibility to use a custom time zone database will have us to face. For example, it could lead to the following effects: -...

Hi, do you have any specific reasons why we should update to that particular version of Gradle?

These parameters are named this way, so that one can get back the values passed to the constructor from the same-named properties of the constructed object.

I believe that numbering months from zero is an abomination and should not be considered a normal practice that we take into account when naming the corresponding parameter/property.

So did I get it right that you need such a type to represent deserialized values of the built-in date-time OpenAPI format? Why is it important to preserve the offset...

IMO, getting the length of a month by creating two dates and subtracting them is a more contrived way than to query it directly from some calendar info provider. So,...

I'd rather deprecate the function `plus` taking `DateTimeUnit` alone implying `value` being added equal to `1`. This way it would be more clear that `DateTimeUnit` is not a substitute for...