David Golden - "Taking Perl to Eleven with Higher-Order Functions"
# Transformation helper function
sub _x {
my $v = shift;
my $is_code = ref($v) eq 'CODE';
return $is_code ? $v->() : $v; # What about arguments to $v??
}
Data::Fake
July 3, 2019 at 1:52:05 PM EDT
*
FILLER