Rosetta Code/List authors of task descriptions: Difference between revisions

m
→‎{{header|Perl 6}}: Update for whatevercode currying changes
m (Update list)
m (→‎{{header|Perl 6}}: Update for whatevercode currying changes)
Line 357:
 
# Get sorted unique list of task authors
for %tasks{*}».<author>.unique.sort(*{.&naturally}) -> $author {
 
# Add author and contributions link to the first cell
Line 363:
 
# Get list of tasks by this author, sorted by name
for %tasks.grep( { $_.value.<author> eq $author } ).sort(*{.key.&naturally}) -> $task {
 
# and add the date, status and task link to the list in the second cell
10,333

edits