Marc Prud'hommeaux

Results 59 comments of Marc Prud'hommeaux

This is pretty easy to do as a post-processing step by collapsing .insert and .delete with the same item into a single .move. This is the approach that DeepDiff takes...

Actually the spec at https://www.w3.org/TR/SVG/paths.html#PathDataErrorHandling says that "The general rule for error handling in path data is that the SVG user agent shall render a ‘path’ element up to (but...

Actually the problem doesn't seem to be related to relative vs. absolute coordinates, but instead to a lack of padding between some of the numbers. E.g., the circle path part:...

It looks like this is the same as https://github.com/mchoe/SwiftSVG/issues/43 , which looks like it should be re-opened.

An alternative (and simpler) approach could be to instead generate implicit converter functions between the union case class and the wrapped type. E.g.: ```scala sealed trait FooBarUnion case class FooBarFoo(x:...

I didn't see any tests in place that tested this specific (mis)behavior. I won't be able to add any tests for this, but I agree they would be nice to...

Here's a test case that demonstrates the failure using nothing but the ReflectiveSchema (i.e., there are no DB-specific timezone shenanigans getting in the way): ``` public class TimeZoneOffsetTest extends TestCase...

One additional nice feature would be to include the current log messages/warnings/errors in the issue template.

I'd expect a `Lens` composed with a `Prism` to be a `Focus.Optional`, but it looks like it isn't implemented: #4 😞 Is Optional unimplemented due to Swift language shortcomings, or...