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