Sxtanna
Sxtanna
Please update this with native support. It's a great framework and it really sucks not having the ability to run tests on native.
@robstoll I am actually using this in my first ever mpp project, so I'm not too versed in all norms. But I would be more than happy to prototype migration...
> For rendering, there's just in general not a goal for the library to have fine-grained render control, or to preserve formatting. The theoretical way to do that would be...
@havocp Would it be possible for you to supply an example of this system breaking/not fully functioning properly. After all the changes I've made, I cannot get it to produce...
> The intuitive issue is what does it mean for an app to rely on the order some keys appear in, if the config is actually assembled from multiple files,...
> All that past rationale aside, I should also have asked - what immediate specific thing are you doing where preserving order would be useful? What problem are you trying...
A list of JVM JSON implementations that preserve order: - kotlinx.serialization - [JsonTreeReader](https://github.com/Kotlin/kotlinx.serialization/blob/f314e7f6463eb456856a63ab1c1d8730c203ca69/formats/json/commonMain/src/kotlinx/serialization/json/internal/JsonTreeReader.kt#L20) - [JsonObjectBuilder](https://github.com/Kotlin/kotlinx.serialization/blob/43d5f7841fc744b072a636b712e194081456b5ba/formats/json/commonMain/src/kotlinx/serialization/json/JsonElementBuilders.kt#L61) - Gson - [JsonObject](https://github.com/google/gson/blob/master/gson/src/main/java/com/google/gson/JsonObject.java#L33) - json-io - [JsonObject](https://github.com/jdereg/json-io/blob/master/src/main/java/com/cedarsoftware/util/io/JsonObject.java#L37) - Spring Boot - [BasicJsonParser](https://github.com/spring-projects/spring-boot/blob/39aa27e13c6c487f0e74aa7b0de0b120877f705a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/json/BasicJsonParser.java#L98) just to...
> On the topic of JSON field ordering: https://stackoverflow.com/a/16870531 -- Cheers, √ But also do note, this is not about JSON, JSON is not presented as a Human-Optimized Config Object...
> I commented on the JSON as it was used as an example. Personally, having used HOCON since day 1, I have never had a problem with unordered fields as...
@havocp > If the answer is as simple as insertion order, can we make my proposed associativity test case pass with that answer?  Is this what you're looking for?...