in reply to Re^3: Data::Rmap to modify an arrayref of arrayrefs
in thread Data::Rmap to modify an arrayref of arrayrefs
but then the code above introduces an extra level of array referencing that is not acceptable:[ 'note', [ 'shopping', [ 'item', 'bread' ], [ 'item', 'butter' ], [ 'item', 'beans' ] ] ];
it looks like I will have to write the child list at the level of the parent instead of rewriting at the level of the child.[ 'note', [ 'shopping', [ [ 'item', 'bread' ], [ 'item', 'butter' ], [ 'item', 'beans' ] ] ] ];
-- Terence Parr, "Enforcing Strict Model View Separation in Template Engines"
|
|---|