Lines 488-494
sub _process_mappings {
Link Here
|
488 |
# Pass each value to current callback which returns a list |
488 |
# Pass each value to current callback which returns a list |
489 |
# (scalar is fine too) resulting either in a list or |
489 |
# (scalar is fine too) resulting either in a list or |
490 |
# a list of lists that will be flattened by perl. |
490 |
# a list of lists that will be flattened by perl. |
491 |
# The next callback will recieve the possibly expanded list of values. |
491 |
# The next callback will receive the possibly expanded list of values. |
492 |
$values = [ map { $callback->($_) } @{$values} ]; |
492 |
$values = [ map { $callback->($_) } @{$values} ]; |
493 |
} |
493 |
} |
494 |
} |
494 |
} |