Paul Evans

Results 269 comments of Paul Evans

> This issue is becoming a little bigger with core becoming more and more flexible, and i just had a little chat with @leonerd on the topic: I wouldn't say...

Additionally, docs (or a runtime warning) might want to draw more attention to the fact that simply doing `+select` is unlikely to be helpful initially if you just want to...

This particular piece of code was a proof-of-concept from a unit test: ```perl use v5.26; use feature 'signatures'; use List::Util 'max'; sub dump_object ( $obj ) { my $metaclass =...

> * is the order returned from `$meta->slots` guaranteed to be the same? Is it the same as the order in which the declarations were made on the class? Moo(se)...

Additionally, because it doesn't interact with the URL it plays very badly with browser "Back" button. If you use "Back" you don't go back to the previous page of pagination,...

Additionally, if you Ctrl-R to refresh you're now back on page 1, regardless of which page you had previously been looking at

Thinking ahead for having multiple component classes, roles, etc... I suspect a two-level structure for `@repr` probably makes sense. It wants to be a key/value list, pairing up names of...

## Further API The following become possible to think about as well: ### getfield Based on `explode_object`, it's tempting to consider a function that can retrieve the value of an...

It has been suggested that "explode" is probably not a good name here. Aside from the allusions to violence, it also suggests a fully-recursive breaking apart of the object right...

``` @repr = deconstruct_object $obj; $obj = construct_object @repr; ``` I like that.