Matthew Pope

Results 70 comments of Matthew Pope

## Alternative solution The original proposal requires 2 bytes to switch to FlexSym mode. One for a throwaway field name, and another for the op-code to switch. This alternative uses...

Here are few more things about timestamps that probably ought to be clarified in the docs. I have worded this in a Q&A format, but it does not necessarily need...

I did some thinking about this a while ago, here is what I had come up with... In theory, all code gen properties are one of (click on them for...

> We can also explore readers on different levels, but it will involve a lot of step_in and step_out, which is not efficient for getting the depth. Using `Element` also...

Another potentially confusing case: ``` (x+1) // ( 'x' '+' 1 ) (x-1) // ( 'x' -1 ) (x*-1) // ( 'x' '*-' 1 ) ``` The `-` associates with...

> it would be useful to be able to substitute TypeArgument any place a VariablyOccurringTypeArgument is required As long as you are referring to substituting `List` in place of `List`,...

Thanks for providing more details about your use case. > I want to store `TypeArguments` and `VariablyOccurringTypeArguments` in the same container. This is particularly interesting to me. Can you explain...

I had an offline conversation with an Ion user who wants to generate POJOs that have annotations for controlling how the POJO gets serialized/deserialized by Jackson. We should consider providing...

You're right— it is a lot of effort (which is why we don't have one yet). With the Ion CLI, we're taking a similar approach to `git` and `cargo` where...

> I note that this doesn't address @popematt's use case of having a second experimental version of the same command. Actually, I think this does address my use cases, as...