Xliff [Coke]: Oh, wow. That's neat. Thanks for the suggestion 00:10
It loses the order, but that could be built from &?ROUTINE.signature
m: sub a ($a, $b, $c) { }; &a,signature.say 00:11
camelia 5===SORRY!5=== Error while compiling <tmp>
Undeclared routine:
signature used at line 1
vrurg Xliff: what about a capture with subsignature?
Xliff m: sub a ($a, $b, $c) { }; &a.signature.say
camelia ($a, $b, $c)
Xliff vrurg: That would work, but could work to, but say I am using code from a Module I do not control...
Capture with sub signature: sub a( |c ($a, $b, $c) ) { ... } # ? 00:12
vrurg Xliff: yes, this variant.
Xliff vrurg: Nice idea! 00:13
I'll have to remember it.