A. Vieth
A. Vieth
both type of warnings "Use of nil to print" and "Use of nil to invoke method foo" will be raised using verbose => 2 but while "Use of nil to...
thanks, hope this helps to make debugging a bit easier (as the old behavior produced some hard to find bugs at least in my use cases :)
maybe use p5mop if it should ever become faster than Mouse :) at least, most of the module is now written in xs, but still alpha software https://github.com/stevan/p5-mop-redux
so actually the comment in https://github.com/stevan/p5-mop-redux/issues/125 makes sense, as the author is using the ro trait "This is almost a complete copy of Perl 6 syntax. At the moment only...
I think it is a strategic decision you have to make: if you want to get the mop in core, and on the other hand, the perl 6 guys will...
1.) my first choice would be to add lvalue accessors 2.) as you think this is not possible, my second choice would be to create just simple accessors $self->bar and...
okay, problem is that after years of effort to find some kind of standard for OO in perl 5 (and these days, there are standards for everything in programming), I...
not sure whether I understand the problem regarding 2.) you wrote "currently we have no default accessors", so if you say "is ro", isn't there a default accessor created? maybe,...
maybe it is too late to understand everything, but just for clarity right now ``` # private attr has $!foo; # generate public accessors has $!foo is ro; has $!foo...
1.) at least when it comes to the api (not the implementation), it seems very close to perl 6, so question is: why does it differ more (suppose you mean...