in reply to Re: The reason for the "yada yada" operator
in thread The reason for the "yada yada" operator

Also, there were already gazillions of examples in documentation like:

if (frobnicate(42)) { ... }

Implementation of the yada-yada operator made them all syntactically correct. :-)

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name