Hacker News new | ask | show | jobs
by OskarS 777 days ago
Raku does a version of that as well, it's sick.
1 comments

in Raku, this

    data.store.book.filter(_.price < 10).map(_.title)
would be written as

    data.store.book.grep(*.price < 10).map(*.title)