Matt Walker
Matt Walker
Hi there! ## Intro I have two proposed solutions for this issue, but believe the second to be the way to go. I have highlighted lines between code blocks that...
Hello again! I have been hard at work on this issue, but I think it may be best to take a different approach than the one originally agreed upon, and...
It seems I misunderstood something important! Liquid does indeed have support for Part 2 outside of data decls. The test I was using was wrong, so sorry!
I have started work on this issue. Please see the linked PR once it's up.
I'd like to take a look at this issue.
I've added a `--profile` flag so far, and used it to control the dumping of profiling stats. After a conversation with @facundominguez , I've decided that the way to go...
regarding having one flag to dump them all: note that `--stats` actually doesn't run the solver, it _only_ prints the stats. Therefore, a somewhat larger refactor may be required to...
> I would like to require `deriving Component via (Composite Map PlayerVehicle)` newtype wrapper or something like this. Forgive me, but I'm not sure how this really differs from my...
They would not. `PlayerVehicle` would not be a `Component`, and therefore could not be used with `cmap`.
If you omit the instance declaration `instance Component PlayerVehicle`, then PlayerVehicle will have a derived instance of `Generic` but no instance for `Component`. This would mean `cmap` could not be...