.new
, .
.^lookup
, .^find_method
.
my $hum1-create = human1.^find_method('new');
, , , .
my $c = $hum1-create( human1 );
, , , .
my $hum1-create = human1.^find_method('new').assuming(human1);
my $c = $hum1-create();
, .assuming
,
-> |capture { human1.^find_method('new').( human1, |capture ) }
, :
my $hum1-create = -> |capture { human1.new( |capture ) }
,
my $hum1-create = -> { human1.new }
&
sigiled, , .
my &hum1-create = human1.^find_method('new').assuming(human1);
my $c = hum1-create;