On 2018-10-02 6:28 pm, ToddAndMargo wrote:
Question: in Perl syntaxland, is "postfix" short for "postcircumfix"?
Again, search for "postcircumfix" in docs.perl6.org, and you will get this:
https://docs.perl6.org/language/operators#index-entry-postcircumfix_operator >>term++ postfix >>(term) circumfix >>term1[term2] postcircumfixSo it's a postfix operator and circumfix operator put together: *after* one term, and *around* the other term.
-David