Results 7 issues of Menderes

I'm reading a cell that has a value like `0.485`. Because of the IEEE, I see `0.48500004`. Which is understandable. I want to access the raw string value of the...

formatting

It seems like gives an error when deserializing nested structs that have optional fields. Example: ```cpp struct Child { std::optional age; // Error because couldn't find "age" }; struct Parent...

It should be merged after https://github.com/aseprite/aseprite/pull/4506

Example: ```java // User.java import org.immutables.value.Value; @Value.Immutable public interface User { @Value.Default default String getName() { return NameGenerator.random(); } } ``` ```java // ImmutableUser.java import org.immutables.value.Generated; @Generated(from = "User", generator...

type: enhancement