Jonathan Scott Duff wrote:

>         (*%a, %b) = (%c,%d);    # %a slurps, %b gets nothing
>         (%a, *%b) = (%c,%d);    # %a = %c, %b gets the rest
> 
> I'm sure your imaginations can twiddle the cardinality knob
> appropriate for generalization  :-)
> 
> -Scott


so if you don't know exactly what the conext is going to be
can you defer it with a continuation operator?


        @split_me_later = ?(%f,%g,%h);
        ...
        (%a,*%b) = @split_me_later

Reply via email to